KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ibatis > common > xml > NodeletException


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 JavaDoc msg) {
12     super(msg);
13   }
14
15   public NodeletException(Throwable JavaDoc cause) {
16     super(cause);
17   }
18
19   public NodeletException(String JavaDoc msg, Throwable JavaDoc cause) {
20     super(msg, cause);
21   }
22
23 }
24
Popular Tags