1 package com.ibatis.common.xml; 2 3 import com.ibatis.common.exception.NestedException; 4 5 public class NodeletException extends NestedException { 6 7 public NodeletException() { 8 super(); 9 } 10 11 public NodeletException(String msg) { 12 super(msg); 13 } 14 15 public NodeletException(Throwable cause) { 16 super(cause); 17 } 18 19 public NodeletException(String msg, Throwable cause) { 20 super(msg, cause); 21 } 22 23 } 24 | Popular Tags |