1 23 package org.hammurapi; 24 25 30 public class HammurapiNonConsumableException extends HammurapiException { 31 32 35 private static final long serialVersionUID = -2846793999906765410L; 36 37 40 public HammurapiNonConsumableException() { 41 super(); 42 } 43 44 47 public HammurapiNonConsumableException(String message) { 48 super(message); 49 } 50 51 55 public HammurapiNonConsumableException(String message, Throwable cause) { 56 super(message, cause); 57 } 58 59 62 public HammurapiNonConsumableException(Throwable cause) { 63 super(cause); 64 } 65 } 66 | Popular Tags |