1 7 package com.inversoft.verge.mvc.controller; 8 9 10 import com.inversoft.util.BaseException; 11 12 13 26 public class ActionHandlerException extends BaseException { 27 28 31 public ActionHandlerException() { 32 } 33 34 39 public ActionHandlerException(String mesg) { 40 super(mesg); 41 } 42 43 50 public ActionHandlerException(String mesg, Throwable cause) { 51 super(mesg, cause); 52 } 53 54 61 public ActionHandlerException(Throwable cause) { 62 super(cause); 63 } 64 } | Popular Tags |