1 package com.melloware.jukes.exception;
2
3 import org.apache.commons.lang.exception.NestableRuntimeException;
4
5 /**
6 * This exception is used to mark (fatal) failures in infrastructure
7 * and system code.
8 * <p>
9 * Copyright (c) 1999-2007 Melloware, Inc. <http://www.melloware.com>
10 * @author Emil A. Lefkof III <info@melloware.com>
11 * @author Christian Bauer <christian@hibernate.org>
12 * @version 4.0
13 * @see org.apache.commons.lang.exception.NestableRuntimeException
14 */
15 public class InfrastructureException
16 extends NestableRuntimeException {
17
18 /**
19 * Default Constructor.
20 */
21 public InfrastructureException() {
22 // empty constructor
23 }
24
25 public InfrastructureException(String message) {
26 super(message);
27 }
28
29 public InfrastructureException(Throwable cause) {
30 super(cause);
31 }
32
33 public InfrastructureException(String message, Throwable cause) {
34 super(message, cause);
35 }
36 }