类 BulkAccessorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.persistence.PersistenceException
-
- org.hibernate.HibernateException
-
- org.hibernate.bytecode.internal.javassist.BulkAccessorException
-
- 所有已实现的接口:
Serializable
public class BulkAccessorException extends HibernateException
An exception thrown while generating a bulk accessor.- 作者:
- Muga Nishizawa, modified by Shigeru Chiba
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 BulkAccessorException(String message)Constructs an exception.BulkAccessorException(String message, int index)Constructs an exception.BulkAccessorException(String message, int index, Exception cause)Constructs an exception.BulkAccessorException(String message, Exception cause)Constructs an exception.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 intgetIndex()Returns the index of the property that causes this exception.
-
-
-
构造器详细资料
-
BulkAccessorException
public BulkAccessorException(String message)
Constructs an exception.- 参数:
message- Message explaining the exception condition
-
BulkAccessorException
public BulkAccessorException(String message, int index)
Constructs an exception.- 参数:
message- Message explaining the exception conditionindex- The index of the property that causes an exception.
-
BulkAccessorException
public BulkAccessorException(String message, Exception cause)
Constructs an exception.- 参数:
message- Message explaining the exception conditioncause- The underlying cause
-
-