2010-09-22 19:04:10 +02:00
|
|
|
package com.google.refine.model;
|
2010-05-17 23:33:46 +02:00
|
|
|
|
|
|
|
public class ModelException extends Exception {
|
|
|
|
private static final long serialVersionUID = -168448967638065467L;
|
|
|
|
|
|
|
|
public ModelException() {
|
|
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
|
|
|
|
public ModelException(String message) {
|
|
|
|
super(message);
|
|
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
|
|
|
|
public ModelException(Throwable cause) {
|
|
|
|
super(cause);
|
|
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
|
|
|
|
public ModelException(String message, Throwable cause) {
|
|
|
|
super(message, cause);
|
|
|
|
// TODO Auto-generated constructor stub
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|