1 64 65 package com.jcorporate.expresso.core.controller; 66 67 72 73 import com.jcorporate.expresso.kernel.exception.ChainedException; 74 75 76 83 public class ControllerException 84 extends ChainedException { 85 88 public ControllerException() { 89 super(); 90 } 91 92 97 public ControllerException(String s) { 98 super(s); 99 } 100 101 107 public ControllerException(String s, Throwable t) { 108 super(s, t); 109 } 110 111 116 public ControllerException(Throwable t) { 117 super(t); 118 } 119 120 } 121 122 | Popular Tags |