org.hidetake.groovy.ssh.session.BackgroundCommandException.groovy Maven / Gradle / Ivy
package org.hidetake.groovy.ssh.session
import groovy.transform.CompileStatic
/**
* An exception thrown if at least one background command occurs any error.
*
* @author Hidetake Iwata
*/
@CompileStatic
class BackgroundCommandException extends RuntimeException {
final List exceptionsOfBackgroundExecution
def BackgroundCommandException(List exceptionsOfBackgroundExecution) {
super('Error in background command execution')
this.exceptionsOfBackgroundExecution = exceptionsOfBackgroundExecution
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy