source: trunk/src/org/expeditee/items/widgets/InteractiveWidgetNotAvailableException.java@ 284

Last change on this file since 284 was 198, checked in by ra33, 16 years ago

added new package to separate widget classes from item classes

File size: 538 bytes
Line 
1package org.expeditee.items.widgets;
2
3/**
4 * Occurs if attempting to call a widget into existance but does not exist.
5 * @author Brook Novak
6 */
7public class InteractiveWidgetNotAvailableException extends Exception {
8 protected static final long serialVersionUID = 0L;
9
10 public InteractiveWidgetNotAvailableException() {
11 super();
12 }
13
14 public InteractiveWidgetNotAvailableException(String message) {
15 super(message);
16 }
17
18 public InteractiveWidgetNotAvailableException(String message, Exception inner) {
19 super(message, inner);
20 }
21}
Note: See TracBrowser for help on using the repository browser.