|
Last change
on this file since 594 was
594,
checked in by pharms, 13 years ago
|
- exceptions should be caught. So reverted it to a normal exception instead of a runtime one
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | // Module : $RCSfile: GUIModelException.java,v $ |
|---|
| 2 | // Version : $Revision: 0.0 $ $Author: pharms $ $Date: 14.08.2012 $ |
|---|
| 3 | // Project : quest-core-events |
|---|
| 4 | // Creation : 2012 by pharms |
|---|
| 5 | // Copyright : Patrick Harms, 2012 |
|---|
| 6 | package de.ugoe.cs.quest.eventcore.guimodel; |
|---|
| 7 | |
|---|
| 8 | /** |
|---|
| 9 | * TODO comment |
|---|
| 10 | * |
|---|
| 11 | * @version $Revision: $ $Date: 14.08.2012$ |
|---|
| 12 | * @author 2012, last modified by $Author: pharms$ |
|---|
| 13 | */ |
|---|
| 14 | public class GUIModelException extends Exception { |
|---|
| 15 | |
|---|
| 16 | /** */ |
|---|
| 17 | private static final long serialVersionUID = 1L; |
|---|
| 18 | |
|---|
| 19 | /** |
|---|
| 20 | * TODO: comment |
|---|
| 21 | * |
|---|
| 22 | */ |
|---|
| 23 | public GUIModelException() { |
|---|
| 24 | super(); |
|---|
| 25 | } |
|---|
| 26 | |
|---|
| 27 | /** |
|---|
| 28 | * TODO: comment |
|---|
| 29 | * |
|---|
| 30 | * @param message |
|---|
| 31 | */ |
|---|
| 32 | public GUIModelException(String message) { |
|---|
| 33 | super(message); |
|---|
| 34 | } |
|---|
| 35 | |
|---|
| 36 | /** |
|---|
| 37 | * TODO: comment |
|---|
| 38 | * |
|---|
| 39 | * @param cause |
|---|
| 40 | */ |
|---|
| 41 | public GUIModelException(Throwable cause) { |
|---|
| 42 | super(cause); |
|---|
| 43 | } |
|---|
| 44 | |
|---|
| 45 | /** |
|---|
| 46 | * TODO: comment |
|---|
| 47 | * |
|---|
| 48 | * @param message |
|---|
| 49 | * @param cause |
|---|
| 50 | */ |
|---|
| 51 | public GUIModelException(String message, Throwable cause) { |
|---|
| 52 | super(message, cause); |
|---|
| 53 | } |
|---|
| 54 | |
|---|
| 55 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.