1 17 18 package org.apache.avalon.repository ; 19 20 import java.io.IOException ; 21 22 28 public class CascadingIOException 29 extends IOException  30 { 31 32 private Throwable m_cause; 33 34 39 public CascadingIOException( final String message ) 40 { 41 this( message, null ); 42 } 43 44 50 public CascadingIOException( final String message, final Throwable throwable ) 51 { 52 super( message ); 53 m_cause = throwable; 54 } 55 56 60 public Throwable getCause() 61 { 62 return m_cause; 63 } 64 } 65 66 | Popular Tags |