1 package com.ibatis.struts; 2 3 import com.ibatis.common.exception.NestedRuntimeException; 4 5 14 public class BeanActionException extends NestedRuntimeException { 15 16 public BeanActionException() { 17 super(); 18 } 19 20 public BeanActionException(String s) { 21 super(s); 22 } 23 24 public BeanActionException(Throwable throwable) { 25 super(throwable); 26 } 27 28 public BeanActionException(String s, Throwable throwable) { 29 super(s, throwable); 30 } 31 32 } 33 | Popular Tags |