1 17 18 package org.apache.avalon.util.exception; 19 20 26 public class StandardRuntimeException 27 extends RuntimeException  28 { 29 private final Throwable m_throwable; 30 31 36 public StandardRuntimeException( final String message ) 37 { 38 this( message, null ); 39 } 40 41 47 public StandardRuntimeException( final String message, final Throwable throwable ) 48 { 49 super( message ); 50 m_throwable = throwable; 51 } 52 53 58 public final Throwable getCause() 59 { 60 return m_throwable; 61 } 62 } 63 | Popular Tags |