1 55 package org.apache.avalon.framework; 56 57 64 public class CascadingRuntimeException 65 extends RuntimeException  66 implements CascadingThrowable 67 { 68 private final Throwable m_throwable; 69 70 76 public CascadingRuntimeException( final String message, final Throwable throwable ) 77 { 78 super( message ); 79 m_throwable = throwable; 80 } 81 82 87 public final Throwable getCause() 88 { 89 return m_throwable; 90 } 91 } 92 | Popular Tags |