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

org.apache.mina.core.write.NothingWrittenException Maven / Gradle / Ivy

/**
 * Copyright 2007-2015, Kaazing Corporation. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.mina.core.write;

import java.util.Collection;


/**
 * An exception which is thrown when one or more write requests resulted
 * in no actual write operation.
 * 
 * @author Apache MINA Project
 */
public class NothingWrittenException extends WriteException {

    private static final long serialVersionUID = -6331979307737691005L;

    public NothingWrittenException(Collection requests,
            String message, Throwable cause) {
        super(requests, message, cause);
    }

    public NothingWrittenException(Collection requests, String s) {
        super(requests, s);
    }

    public NothingWrittenException(Collection requests,
            Throwable cause) {
        super(requests, cause);
    }

    public NothingWrittenException(Collection requests) {
        super(requests);
    }

    public NothingWrittenException(WriteRequest request, String message,
            Throwable cause) {
        super(request, message, cause);
    }

    public NothingWrittenException(WriteRequest request, String s) {
        super(request, s);
    }

    public NothingWrittenException(WriteRequest request, Throwable cause) {
        super(request, cause);
    }

    public NothingWrittenException(WriteRequest request) {
        super(request);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy