Download this file

TavernaExtractorException.java    18 lines (13 with data), 399 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
package net.timbusproject.extractors.modules.tavernaextractor.utils;
/**
* Created by marco unterberger on 03.11.2014.
* munterberger@sba-research.org
*/
public class TavernaExtractorException extends Exception{
public TavernaExtractorException(String msg){
super(msg);
}
public TavernaExtractorException(String msg, Throwable object){
super(msg, object);
}
}