]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.util/src/org/argeo/util/UtilsException.java
Improve minimal web app.
[lgpl/argeo-commons.git] / org.argeo.util / src / org / argeo / util / UtilsException.java
1 package org.argeo.util;
2
3 /** Utils specific exception. */
4 class UtilsException extends RuntimeException {
5 private static final long serialVersionUID = 1L;
6
7 /** Creates an exception with a message. */
8 public UtilsException(String message) {
9 super(message);
10 }
11
12 /** Creates an exception with a message and a root cause. */
13 public UtilsException(String message, Throwable e) {
14 super(message, e);
15 }
16
17 }