1
2
3
4
5
6
7
8
9
10
11
12
13 package org.gscg.common.gui.exceptions;
14
15 /***
16 * This exception is thrown when a player tries to log on to a single user
17 * interaction layer with an unknown actor role.
18 * <p>
19 * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
20 * Delft, the Netherlands. All rights reserved.
21 *
22 * See for project information <a href="http://www.simulation.tudelft.nl/">
23 * www.simulation.tudelft.nl </a>.
24 *
25 * The source code and binary code of this software is proprietary information
26 * of Delft University of Technology.
27 *
28 * @author <a
29 * href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
30 * van Houten </a>
31 * @version $Revision: 1.1 $ $Date: 2005/08/09 15:43:42 $
32 * @since 1.1.1
33 */
34 public class UnknownActorRoleException extends Exception
35 {
36 /*** the serial version uid */
37 private static final long serialVersionUID = 11L;
38
39 /***
40 * constructs a new UnknownActorRoleException
41 */
42 public UnknownActorRoleException()
43 {
44 super();
45 }
46
47 /***
48 * constructs a new UnknownActorRoleException
49 *
50 * @param message The message
51 */
52 public UnknownActorRoleException(final String message)
53 {
54 super(message);
55 }
56
57 /***
58 * constructs a new UnknownActorRoleException
59 *
60 * @param cause The cause
61 */
62 public UnknownActorRoleException(final Throwable cause)
63 {
64 super(cause);
65 }
66
67 /***
68 * constructs a new UnknownActorRoleException
69 *
70 * @param message The message
71 * @param cause The cause
72 */
73 public UnknownActorRoleException(final String message, final Throwable cause)
74 {
75 super(message, cause);
76 }
77 }