1 /*
2 * Apache License
3 * Version 2.0, January 2004
4 * http://www.apache.org/licenses/
5 *
6 * Copyright 2008 by chenillekit.org
7 *
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 */
14
15 package org.chenillekit.access;
16
17 /**
18 *
19 *
20 * @version $Id: ChenilleKitAccessException.java 333 2008-11-19 16:26:03Z mlusetti $
21 */
22 public class ChenilleKitAccessException extends RuntimeException
23 {
24 /**
25 * Serial version
26 */
27 private static final long serialVersionUID = -6022592655403552535L;
28
29 /**
30 * Default blank constructor
31 */
32 public ChenilleKitAccessException()
33 {
34 }
35
36 /**
37 * @param message
38 */
39 public ChenilleKitAccessException(String message)
40 {
41 super(message);
42 }
43
44 /**
45 * @param cause
46 */
47 public ChenilleKitAccessException(Throwable cause)
48 {
49 super(cause);
50 }
51
52 /**
53 * @param message
54 * @param cause
55 */
56 public ChenilleKitAccessException(String message, Throwable cause)
57 {
58 super(message, cause);
59 }
60
61 }