|
Last change
on this file since 14 was
7,
checked in by phdmakk, 16 years ago
|
|
|
-
Property svn:mime-type set to
text/plain
|
|
File size:
356 bytes
|
| Line | |
|---|
| 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.