Class ServiceNotFoundException
public class ServiceNotFoundException extends Exception
{
// Constructors
public ServiceNotFoundException();
public ServiceNotFoundException(String s);
}
This class represents an exception indicating that a requested service was not available.
Exception
|
+--ServiceNotFoundException
public ServiceNotFoundException();
Creates a ServiceNotFoundException with no detail message.
public ServiceNotFoundException(String s);
Creates a ServiceNotFoundException with the specified detail message.
Parameter | Description |
s
| The detail message.
|