Class UnsupportedServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.appiancorp.asl3.servicefw.connect.ServiceException
com.appiancorp.services.exceptions.ServiceException
com.appiancorp.services.exceptions.UnsupportedServiceException
- All Implemented Interfaces:
Serializable
This is an unchecked exception which occurs when a client makes a request
for a service that was not part of the ASL configuration. It can also be
caused due to some errors in ASL configuration files - such as incorrect
class names
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newUnsupportedServiceException
with the specified class.Constructs a newUnsupportedServiceException
with the specified detail message.UnsupportedServiceException
(String msg_, Class i_) Constructs a newServiceProviderActivationException
with the specified detail message and class. -
Method Summary
Methods inherited from class com.appiancorp.services.exceptions.ServiceException
getCustomMessage, getMessage, setRequest
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnsupportedServiceException
Constructs a newUnsupportedServiceException
with the specified class. The class specifies theClass
for the service being requested- Parameters:
i_
-Class
representing the requested service
-
UnsupportedServiceException
Constructs a newUnsupportedServiceException
with the specified detail message.- Parameters:
msg_
- the detail message.
-
UnsupportedServiceException
Constructs a newServiceProviderActivationException
with the specified detail message and class.- Parameters:
msg_
- the detail messagei_
-Class
representing the requested service
-