KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > ce > auction > exceptions > InfrastructureException


1 package org.hibernate.ce.auction.exceptions;
2
3 /**
4  * This exception is used to mark (fatal) failures in infrastructure and system code.
5  *
6  * @author Christian Bauer <christian@hibernate.org>
7  */

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