View Javadoc

1   package net.sf.msplice.model;
2   
3   import net.sf.msplice.SpliceRuntimeException;
4   
5   @SuppressWarnings("serial")
6   public class ModelRuntimeException extends SpliceRuntimeException {
7   
8   	public ModelRuntimeException() {
9   		super();
10  	}
11  
12  	public ModelRuntimeException(String message, Throwable cause) {
13  		super(message, cause);
14  	}
15  
16  	public ModelRuntimeException(String message) {
17  		super(message);
18  	}
19  
20  	public ModelRuntimeException(Throwable cause) {
21  		super(cause);
22  	}
23  
24  	
25  }