source: trunk/org.etsi.common/src/org/etsi/common/exceptions/TerminationException.java @ 7

Last change on this file since 7 was 7, checked in by phdmakk, 14 years ago
  • Property svn:mime-type set to text/plain
File size: 356 bytes
Line 
1package org.etsi.common.exceptions;
2
3public 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.