1 package org.smartcomps.twister.common.persistence;
2
3 /***
4 * Thrown when a problem occurs with the XML persistent session.
5 */
6 public class XMLSessionException extends Exception {
7
8 public XMLSessionException(String message) {
9 super(message);
10 }
11
12 public XMLSessionException(String message, Throwable cause) {
13 super(message, cause);
14 }
15
16 public XMLSessionException(Throwable cause) {
17 super(cause);
18 }
19 }
This page was automatically generated by Maven