1 7 package hero.interfaces; 8 9 17 public class ServiceUnavailableException 18 extends Exception  19 { 20 21 25 29 33 38 public ServiceUnavailableException( String pMessage ) 39 { 40 super( pMessage ); 41 } 42 43 44 48 53 public String toString() 54 { 55 return super.toString(); 56 } 57 58 65 public boolean equals( Object pTest ) 66 { 67 return super.equals( pTest ); 68 } 69 70 75 public int hashCode() 76 { 77 return super.hashCode(); 78 } 79 80 } 81 | Popular Tags |