public class SimpleORMException
extends java.lang.RuntimeException
SimpleOrm异常
| 构造器和说明 |
|---|
SimpleORMException()
Constructs a new runtime exception with
null as its detail
message. |
SimpleORMException(java.lang.String message) |
SimpleORMException(java.lang.String message,
java.lang.Throwable cause) |
SimpleORMException(java.lang.Throwable e) |
public SimpleORMException()
null as its detail
message. The cause is not initialized, and may subsequently be
initialized by a call to Throwable.initCause(java.lang.Throwable).public SimpleORMException(java.lang.String message)
message - the detail message. The detail message is saved for later
retrieval by the Throwable.getMessage() method.public SimpleORMException(java.lang.String message,
java.lang.Throwable cause)
message - the detail message (which is saved for later retrieval by the
Throwable.getMessage() method).cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)public SimpleORMException(java.lang.Throwable e)
e - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)