1 23 package org.hammurapi; 24 25 import com.pavelvlasov.RuntimeException; 26 27 31 public class HammurapiRuntimeException extends RuntimeException { 32 33 36 private static final long serialVersionUID = 1757393446123619856L; 37 38 41 public HammurapiRuntimeException() { 42 super(); 43 } 45 46 49 public HammurapiRuntimeException(String message) { 50 super(message); 51 } 53 54 57 public HammurapiRuntimeException(Throwable cause) { 58 super(cause); 59 } 61 62 66 public HammurapiRuntimeException(String message, Throwable cause) { 67 super(message, cause); 68 } 70 71 } 72 | Popular Tags |