1 package org.astrogrid.portal.myspace.acting.framework;
2
3 /***
4 * Exception thrown by MySpace handlers.
5 *
6 * @author peter.shillan
7 * @see java.lang.Exception
8 */
9 public class MySpaceHandlerException extends Exception {
10
11 /***
12 * @see java.lang.Exception#Exception()
13 */
14 public MySpaceHandlerException() {
15 super();
16 }
17
18 /***
19 * @see java.lang.Exception#Exception(java.lang.String)
20 * @param message error message
21 */
22 public MySpaceHandlerException(String message) {
23 super(message);
24 }
25
26 /***
27 * @see java.lang.Exception#Exception(java.lang.Throwable)
28 * @param cause root cause of exception
29 */
30 public MySpaceHandlerException(Throwable cause) {
31 super(cause);
32 }
33
34 /***
35 * @see java.lang.Exception#Exception(java.lang.String, java.lang.Throwable)
36 * @param message error message
37 * @param cause root cause of exception
38 */
39 public MySpaceHandlerException(String message, Throwable cause) {
40 super(message, cause);
41 }
42 }