KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > ce > auction > command > CommandException


1 package org.hibernate.ce.auction.command;
2
3 /**
4  * A checked exception thrown by command execute methods, wrapping the root cause.
5  *
6  * @author Christian Bauer <christian@hibernate.org>
7  */

8 public class CommandException
9     extends Exception JavaDoc {
10
11     public CommandException() {}
12
13     public CommandException(String JavaDoc message) {
14         super(message);
15     }
16
17     public CommandException(String JavaDoc message, Throwable JavaDoc cause) {
18         super(message, cause);
19     }
20
21     public CommandException(Throwable JavaDoc cause) {
22         super(cause);
23     }
24 }
25
Popular Tags