All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.multipart.ExceededSizeException Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
// 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