]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/SlcException.java
Fix bugs with slc execution notifications
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / 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 }