public class SiteCatalogException extends CatalogException
SQLException
interface.SiteCatalog
,
Serialized FormConstructor and Description |
---|
SiteCatalogException()
Constructs a
SiteCatalogException with no detail
message. |
SiteCatalogException(java.lang.String s)
Constructs a
SiteCatalogException with the
specified detailed message. |
SiteCatalogException(java.lang.String s,
java.lang.Throwable cause)
Constructs a
SiteCatalogException with the
specified detailed message and a cause. |
SiteCatalogException(java.lang.Throwable cause)
Constructs a
SiteCatalogException with the
specified just a cause. |
getNextException, setNextException
public SiteCatalogException()
SiteCatalogException
with no detail
message.public SiteCatalogException(java.lang.String s)
SiteCatalogException
with the
specified detailed message.s
- is the detailled message.public SiteCatalogException(java.lang.String s, java.lang.Throwable cause)
SiteCatalogException
with the
specified detailed message and a cause.s
- is the detailled message.cause
- is 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 SiteCatalogException(java.lang.Throwable cause)
SiteCatalogException
with the
specified just a cause.cause
- is 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.