Class ClusterServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- nl.gx.webmanager.services.clusterevents.ClusterServiceException
-
- All Implemented Interfaces:
Serializable
public class ClusterServiceException extends Exception
This class provides a wrapper for checked exceptions and is thrown by the utility services in case of any checked exceptions. The original exception is encapsulated in this wrapper.- Author:
- Ivo Ladage-van Doorn
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClusterServiceException(Exception e)
Constructor.ClusterServiceException(String msg)
Constructor.ClusterServiceException(String msg, Exception e)
Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ClusterServiceException
public ClusterServiceException(String msg)
Constructor.- Parameters:
msg
- The error message.
-
ClusterServiceException
public ClusterServiceException(Exception e)
Constructor. Instantiates a new ClusterServiceException.- Parameters:
e
- The original exception
-
-