1 package com.explosion.expf.menusandtools.menu;
2
3 import com.explosion.utilities.exception.EnhancedException;
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25 /***
26 * @author Stephen Cowx
27 * Created on 09-Mar-2005
28 */
29 public class InvalidOrUnknownSegmentException extends EnhancedException
30 {
31
32 /***
33 *
34 */
35 public InvalidOrUnknownSegmentException()
36 {
37 super();
38 }
39
40 /***
41 * @param message
42 * @param originalException
43 */
44 public InvalidOrUnknownSegmentException(String message, Exception originalException)
45 {
46 super(message, originalException);
47 }
48
49 /***
50 * @param message
51 */
52 public InvalidOrUnknownSegmentException(String message)
53 {
54 super(message);
55 }
56
57 }