1 7 package com.inversoft.verge.mvc.controller.actionflow.config.test; 8 9 10 import com.inversoft.util.BaseException; 11 12 13 20 public class TestException extends BaseException { 21 22 25 public TestException() { 26 super(); 27 } 28 29 35 public TestException(String message) { 36 super(message); 37 } 38 39 46 public TestException(String message, Throwable cause) { 47 super(message, cause); 48 } 49 50 56 public TestException(Throwable cause) { 57 super(cause); 58 } 59 } 60 | Popular Tags |