1 2 29 30 package com.jcraft.jsch; 31 32 public class JSchException extends Exception { 33 private Throwable cause=null; 35 public JSchException () { 36 super(); 37 } 38 public JSchException (String s) { 39 super(s); 40 } 41 public JSchException (String s, Throwable e) { 42 super(s); 43 this.cause=e; 44 } 45 public Throwable getCause(){ 46 return this.cause; 47 } 48 } 49 | Popular Tags |