| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception hero.interfaces.ServiceUnavailableException
ServiceUnavailableException | public class ServiceUnavailableException extends Exception (Code) | | Indicates a problem with a unavailable service. Because
this is not a Runtime or Remote Exception it will NOT
cause the transaction to roll back.
author: Andreas Schaefer version: $Revision: 1.1 $ |
Method Summary | |
public boolean | equals(Object pTest) Determines if the given instance is the same as this instance
based on its content. | public int | hashCode() | public String | toString() |
ServiceUnavailableException | public ServiceUnavailableException(String pMessage)(Code) | | Constructor with a message of the exception
Parameters: pMessage - Message to further explain the exception |
equals | public boolean equals(Object pTest)(Code) | | Determines if the given instance is the same as this instance
based on its content. This means that it has to be of the same
class ( or subclass ) and it has to have the same content
Returns the equals value from the super class |
hashCode | public int hashCode()(Code) | | Returns the hashcode of this instance
Hashcode of the super class |
toString | public String toString()(Code) | | Describes the instance and its content for debugging purpose
Using the one from the super class |
|
|
|