com.supermap.services.components.spi
Class ServiceRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.supermap.services.components.spi.ServiceRuntimeException
-
- All Implemented Interfaces:
- java.io.Serializable
public class ServiceRuntimeException extends java.lang.RuntimeExceptionService runtime exception.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description ServiceRuntimeException(java.lang.String msg)Constructs a new exception object based on the exception information.ServiceRuntimeException(java.lang.String msg, java.lang.Throwable cause)Constructs a new exception object based on the exception information and exception cause.ServiceRuntimeException(java.lang.Throwable cause)Constructs a new exception object based on the exception cause.
-
-
-
Constructor Detail
-
ServiceRuntimeException
public ServiceRuntimeException(java.lang.String msg)
Constructs a new exception object based on the exception information.
- Parameters:
msg- Exception information.
-
ServiceRuntimeException
public ServiceRuntimeException(java.lang.Throwable cause)
Constructs a new exception object based on the exception cause.
- Parameters:
cause- Exception cause.
-
ServiceRuntimeException
public ServiceRuntimeException(java.lang.String msg, java.lang.Throwable cause)Constructs a new exception object based on the exception information and exception cause.
- Parameters:
msg- Exception information.cause- Exception cause.
-
-