org.hibernate.bytecode.javassist
Class BulkAccessorException
RuntimeException
org.hibernate.bytecode.javassist.BulkAccessorException
public class BulkAccessorException
extends RuntimeException
An exception thrown while generating a bulk accessor.
- Muga Nishizawa
- modified by Shigeru Chiba
Throwable | getCause() - Gets the cause of this throwable.
|
int | getIndex() - Returns the index of the property that causes this exception.
|
Throwable | initCause(Throwable cause) - Initializes the cause of this throwable.
|
BulkAccessorException
public BulkAccessorException(String message)
Constructs an exception.
BulkAccessorException
public BulkAccessorException(String message,
Throwable cause)
Constructs an exception.
BulkAccessorException
public BulkAccessorException(String message,
int index)
Constructs an exception.
index
- the index of the property that causes an exception.
BulkAccessorException
public BulkAccessorException(Throwable cause,
int index)
Constructs an exception.
index
- the index of the property that causes an exception.
getCause
public Throwable getCause()
Gets the cause of this throwable.
It is for JDK 1.3 compatibility.
getIndex
public int getIndex()
Returns the index of the property that causes this exception.
- -1 if the index is not specified.
initCause
public Throwable initCause(Throwable cause)
Initializes the cause of this throwable.
It is for JDK 1.3 compatibility.