]> git.argeo.org Git - gpl/argeo-slc.git/blob - SlcException.java
7daffaf87126eac742213a71236e17db4f949d98
[gpl/argeo-slc.git] / SlcException.java
1 package org.argeo.slc.core;
2
3 /** Basis for all SLC exceptions. This is an unchecked exception. */
4 public class SlcException extends RuntimeException {
5 static final long serialVersionUID = 1l;
6
7 /** Constructor. */
8 public SlcException(String message) {
9 super(message);
10 }
11
12 /** Constructor. */
13 public SlcException(String message, Throwable cause) {
14 super(message, cause);
15 }
16
17 }