Package nl.b3p.commons.services
Class B3pCommonsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- nl.b3p.commons.services.B3pCommonsException
-
- All Implemented Interfaces:
Serializable
public class B3pCommonsException extends Exception
- Author:
- Chris
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description B3pCommonsException()
Creates a new instance of B3pCommonsExceptionB3pCommonsException(String msg)
Nieuwe B3pCommonsException met beschrijvende tekst.B3pCommonsException(String msg, Throwable cause)
Nieuwe B3pCommonsException met beschrijvende tekst en veroorzakende exceptie.B3pCommonsException(Throwable cause)
Nieuwe B3pCommonsException met veroorzakende exceptie.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
B3pCommonsException
public B3pCommonsException()
Creates a new instance of B3pCommonsException
-
B3pCommonsException
public B3pCommonsException(String msg)
Nieuwe B3pCommonsException met beschrijvende tekst.- Parameters:
msg
- beschrijving van foutconditie
-
B3pCommonsException
public B3pCommonsException(String msg, Throwable cause)
Nieuwe B3pCommonsException met beschrijvende tekst en veroorzakende exceptie.- Parameters:
msg
- beschrijving van foutconditiecause
- onderliggende oorzaak van de exceptie
-
B3pCommonsException
public B3pCommonsException(Throwable cause)
Nieuwe B3pCommonsException met veroorzakende exceptie.- Parameters:
cause
- onderliggende exceptie
-
-