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

org.cesecore.util.StreamSizeLimitExceededException Maven / Gradle / Ivy

/*************************************************************************
 *                                                                       *
 *  CESeCore: CE Security Core                                           *
 *                                                                       *
 *  This software is free software; you can redistribute it and/or       *
 *  modify it under the terms of the GNU Lesser General Public           *
 *  License as published by the Free Software Foundation; either         *
 *  version 2.1 of the License, or any later version.                    *
 *                                                                       *
 *  See terms of license at gnu.org.                                     *
 *                                                                       *
 *************************************************************************/
package org.cesecore.util;

/**
 * Thrown when there's too much data, e.g. in a stream when using FileTools.streamCopyWithLimit
 * 
 * @version $Id: StreamSizeLimitExceededException.java 22658 2016-01-28 10:11:11Z mikekushner $
 */
public class StreamSizeLimitExceededException extends Exception {

    private static final long serialVersionUID = 1L;

    public StreamSizeLimitExceededException() {
        super();
    }
    
    public StreamSizeLimitExceededException(String message) {
        super(message);
    }

    public StreamSizeLimitExceededException(String message, Throwable cause) {
        super(message, cause);
    }

    public StreamSizeLimitExceededException(Throwable cause) {
        super(cause);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy