1 64 package com.jcorporate.expresso.kernel.exception; 65 66 67 74 75 public class ExpressoRuntimeException extends ChainedException { 76 77 80 public ExpressoRuntimeException() { 81 super(); 82 } 83 84 89 public ExpressoRuntimeException(String s) { 90 super(s); 91 } 92 93 102 public ExpressoRuntimeException(String s, Throwable t) { 103 super(s, t); 104 } 105 106 112 public ExpressoRuntimeException(Throwable t) { 113 super(t); 114 } 115 116 } | Popular Tags |