Package net.jadler.exception
Class JadlerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.jadler.exception.JadlerException
-
- All Implemented Interfaces:
Serializable
public class JadlerException extends RuntimeException
Runtime exception used in jadler on various places. Because checked exceptions suck, you know.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JadlerException()JadlerException(String message)JadlerException(String message, Throwable cause)JadlerException(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
-
JadlerException
public JadlerException(Throwable cause)
- Parameters:
cause- the cause of this exception- See Also:
RuntimeException(java.lang.Throwable)
-
JadlerException
public JadlerException(String message, Throwable cause)
- Parameters:
message- the detail messagecause- the cause of this exception- See Also:
RuntimeException(java.lang.String, java.lang.Throwable)
-
JadlerException
public JadlerException(String message)
- Parameters:
message- the detail message- See Also:
RuntimeException(java.lang.String)
-
JadlerException
public JadlerException()
- See Also:
RuntimeException()
-
-