Package chemaxon.marvin.services
Class ServiceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- chemaxon.marvin.services.ServiceException
-
- All Implemented Interfaces:
Serializable
@PublicAPI public class ServiceException extends Exception
Exception
for failure indication for services.- Since:
- 5.6
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceException(String message)
Creates aServiceException
with specified messageServiceException(String message, Throwable cause)
Creates aServiceException
with specified message and causeServiceException(Throwable cause)
Creates aServiceException
with specified 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
-
ServiceException
public ServiceException(String message, Throwable cause)
Creates aServiceException
with specified message and cause- Parameters:
message
- the error messagecause
- the error cause
-
ServiceException
public ServiceException(String message)
Creates aServiceException
with specified message- Parameters:
message
- the error message
-
ServiceException
public ServiceException(Throwable cause)
Creates aServiceException
with specified cause- Parameters:
cause
- the error cause
-
-