1 17 18 package org.apache.james.nntpserver; 19 20 27 public class NNTPException extends RuntimeException { 28 29 32 private final Throwable t; 33 34 40 public NNTPException(String msg) { 41 super(msg); 42 this.t = null; 43 } 44 45 52 public NNTPException(String msg,Throwable t) { 53 super(msg+((t!=null)?": "+t.toString():"")); 54 this.t = t; 55 } 56 57 63 public NNTPException(Throwable t) { 64 super(t.toString()); 65 this.t = t; 66 } 67 } 68 | Popular Tags |