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

com.pastdev.jsch.MultiCloseException Maven / Gradle / Ivy

Go to download

A set of extensions on top of JSch providing a full SCP protocol implementation, tunneling including multi-hop, a Java 7 FileSystem like implementation for Java 6 and remote command execution

There is a newer version: 0.1.11
Show newest version
package com.pastdev.jsch;


import java.io.IOException;
import java.util.ArrayList;
import java.util.List;


public class MultiCloseException extends IOException {
    private static final long serialVersionUID = -8654074724588491465L;
    
    private List causes;

    public void add( Exception e ) {
        if ( causes == null ) {
            causes = new ArrayList();
        }
        causes.add( e );
    }

    public List getCauses() {
        return causes;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy