Constructors Summary |
---|
public BulkAccessorException(String message)Constructs an exception.
super(message);
index = -1;
initCause(null);
|
public BulkAccessorException(String message, int index)Constructs an exception.
this(message + ": " + index);
this.index = index;
|
public BulkAccessorException(String message, Throwable cause)Constructs an exception.
super(message);
index = -1;
initCause(cause);
|
public BulkAccessorException(Throwable cause, int index)Constructs an exception.
this("Property " + index);
this.index = index;
initCause(cause);
|