]> git.argeo.org Git - gpl/argeo-suite.git/blob - org.argeo.suite.core/src/org/argeo/suite/SuiteException.java
Use latest Commons SNAPSHOT
[gpl/argeo-suite.git] / org.argeo.suite.core / src / org / argeo / suite / SuiteException.java
1 package org.argeo.suite;
2
3 /** Argeo Suite specific exception. Wraps a usual RuntimeException */
4 public class SuiteException extends RuntimeException {
5 private static final long serialVersionUID = 9048360857209165816L;
6
7 public SuiteException(String message) {
8 super(message);
9 }
10
11 public SuiteException(String message, Throwable e) {
12 super(message, e);
13 }
14 }