1 64 65 package com.jcorporate.expresso.core.job; 66 67 72 73 import com.jcorporate.expresso.kernel.exception.ChainedException; 74 75 76 81 public class ServerException 82 extends ChainedException { 83 86 public ServerException() { 87 super(); 88 } 89 90 93 public ServerException(String s) { 94 super(s); 95 } 96 97 101 public ServerException(String s, Throwable t) { 102 super(s, t); 103 } 104 105 108 public ServerException(Throwable t) { 109 super(t); 110 } 111 112 } 113 114 | Popular Tags |