com.fastchar.multipart.ExceededSizeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar Show documentation
Show all versions of fastchar Show documentation
FastChar is Web+ORM Framework in Java.
// Copyright (C) 2007 by Jason Hunter .
// All rights reserved. Use of this class is limited.
// Please see the LICENSE for more information.
package com.fastchar.multipart;
import java.io.IOException;
/**
* Thrown to indicate an upload exceeded the maximum size.
*
* @see com.oreilly.servlet.multipart.MultipartParser
*
* @author Jason Hunter, Copyright © 2007
* @version 1.0, 2007/04/11
*/
public class ExceededSizeException extends IOException {
/**
* Constructs a new ExceededSizeException with no detail message.
*/
public ExceededSizeException() {
super();
}
/**
* Constructs a new ExceededSizeException with the specified
* detail message.
*
* @param s the detail message
*/
public ExceededSizeException(String s) {
super(s);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy