6 public class AttributeSizeException
extends EventSystemException
{
8 public AttributeSizeException(Throwable e
) {
12 public AttributeSizeException(String s
) {
16 public AttributeSizeException(String s
, Throwable e
) {
20 public AttributeSizeException(String attribute
, int size
, int expectedSize
) {
21 super("Attribute "+attribute
+" size is incorrect. Expected "+expectedSize
+" but was "+size
);
24 public AttributeSizeException(String attribute
, int size
, int expectedSize
, Throwable e
) {
25 super("Attribute "+attribute
+" size is incorrect. Expected "+expectedSize
+" but was "+size
, e
);