Last change
on this file was
7,
checked in by phdmakk, 14 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
356 bytes
|
Rev | Line | |
---|
[7] | 1 | package org.etsi.common.exceptions; |
---|
| 2 | |
---|
| 3 | public class TerminationException extends Exception { |
---|
| 4 | |
---|
| 5 | private static final long serialVersionUID = -2717985520434639235L; |
---|
| 6 | |
---|
| 7 | public TerminationException(String message) { |
---|
| 8 | super("Errors occurred during execution! Could not continue! \n\t" + message); |
---|
| 9 | System.err.println(super.getMessage()); |
---|
| 10 | System.exit(1); |
---|
| 11 | } |
---|
| 12 | |
---|
| 13 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.