1 2 24 25 package com.lutris.appserver.server.session; 26 import com.lutris.util.ChainedException; 27 28 34 public class SessionException extends ChainedException { 35 40 public SessionException(String msg) { 41 super(msg); 42 } 43 44 51 public SessionException(String msg, Throwable cause) { 52 super(msg, cause); 53 } 54 55 61 public SessionException(Throwable cause) { 62 super(cause); 63 } 64 } 65 66 67 68 | Popular Tags |