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