Class FileUploadException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.helger.web.fileupload.exception.FileUploadException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FileSizeLimitExceededException,InvalidContentTypeException,IOFileUploadException,SizeLimitExceededException
public class FileUploadException extends Exception
Exception for errors encountered while processing the request.- Version:
- $Id: FileUploadException.java 551000 2007-06-27 00:59:16Z jochen $
- Author:
- John McNally
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileUploadException()Constructs a newFileUploadExceptionwithout message.FileUploadException(String sMsg)Constructs a newFileUploadExceptionwith specified detail message.FileUploadException(String sMsg, Throwable aCause)Creates a newFileUploadExceptionwith the given detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FileUploadException
public FileUploadException()
Constructs a newFileUploadExceptionwithout message.
-
FileUploadException
public FileUploadException(String sMsg)
Constructs a newFileUploadExceptionwith specified detail message.- Parameters:
sMsg- the error message.
-
-