2010-08-04 01:01:18 +02:00
|
|
|
package com.google.gridworks.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
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|