1 package net.sf.josceleton.commons.exception;
2
3 /**
4 * @since 0.1
5 */
6 public abstract class JosceletonException extends RuntimeException {
7
8 private static final long serialVersionUID = 322428616175111188L;
9
10 protected JosceletonException(final String message, final Throwable cause) {
11 super(message, cause);
12 }
13
14 }