]> git.argeo.org Git - gpl/argeo-slc.git/blob - SlcException.java
49647d4960e43d240f54f277c117e6eaf2d9653b
[gpl/argeo-slc.git] / SlcException.java
1 package org.argeo.slc;
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 }