Package net.sf.jkniv.sqlegance
Class RepositoryException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.jkniv.sqlegance.RepositoryException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConstraintException,NonUniqueResultException,QueryNotFoundException,RepositoryConfigException
public class RepositoryException extends RuntimeException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RepositoryException()Constructor for RepositoryException without message detailRepositoryException(String msg)Constructor for RepositoryException.RepositoryException(String msg, Throwable cause)Constructor for RepositoryException.RepositoryException(Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RepositoryException
public RepositoryException()
Constructor for RepositoryException without message detail
-
RepositoryException
public RepositoryException(String msg)
Constructor for RepositoryException.- Parameters:
msg- the detail from exception message
-
RepositoryException
public RepositoryException(String msg, Throwable cause)
Constructor for RepositoryException.- Parameters:
msg- the detail from exception messagecause- the trouble root cause , usually JDBC family exception
-
RepositoryException
public RepositoryException(Throwable cause)
-
-