source: FCSannotrans/trunk/src/main/java/nl/mpi/annot/translate/ATException.java @ 6988

Last change on this file since 6988 was 6979, checked in by peter.beinema@mpi.nl, 8 years ago

first upload

File size: 455 bytes
Line 
1/*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
6package nl.mpi.annot.translate;
7
8import java.lang.Exception;
9
10/**
11 *
12 * @author petbei
13 */
14public class ATException extends Exception {
15    ATException(String msg) {
16        super(msg);
17    }
18    ATException(String msg, Throwable thr) {
19        super(msg, thr);
20    }
21}
Note: See TracBrowser for help on using the repository browser.