1 2 24 25 26 27 28 29 package com.lutris.appserver.server.httpPresentation; 30 31 import com.lutris.util.ChainedException; 32 33 34 37 public class FilePresentationException extends ChainedException { 38 47 public FilePresentationException(String msg, 48 Throwable cause) { 49 super(msg, cause); 50 } 51 52 60 public FilePresentationException(Throwable cause) { 61 super(cause); 62 } 63 } 64 | Popular Tags |