1 2 24 25 26 27 28 package com.lutris.appserver.server; 29 30 import com.lutris.util.ChainedException; 31 32 40 public class ApplicationException extends ChainedException { 41 46 public ApplicationException(String msg) { 47 super(msg); 48 } 49 50 57 public ApplicationException(String msg, 58 Throwable cause) { 59 super(msg, cause); 60 } 61 62 68 public ApplicationException(Throwable cause) { 69 super(cause); 70 } 71 } 72 | Popular Tags |