1 50 package org.apache.avalon.excalibur.collections; 51 52 60 public class BufferUnderflowException extends RuntimeException  61 { 62 private final Throwable m_throwable; 63 64 67 public BufferUnderflowException( String message ) 68 { 69 this( message, null ); 70 } 71 72 76 public BufferUnderflowException( String message, Throwable exception ) 77 { 78 super( message ); 79 m_throwable = exception; 80 } 81 82 87 public final Throwable getCause() 88 { 89 return m_throwable; 90 } 91 } 92 | Popular Tags |