1 2 24 25 package com.lutris.appserver.server.sessionEnhydra; 26 27 import com.lutris.appserver.server.session.SessionException; 28 29 35 public class CreateSessionException extends SessionException { 36 37 42 public CreateSessionException(String msg) { 43 super(msg); 44 } 45 46 53 public CreateSessionException(String msg, 54 Throwable cause) { 55 super(msg, cause); 56 } 57 58 64 public CreateSessionException(Throwable cause) { 65 super(cause); 66 } 67 } 68 69 70 71 72 | Popular Tags |