Missing @Override
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@815441 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d0a75294b4
commit
6a2b7c9831
|
@ -70,6 +70,7 @@ public class BufferOverflowException extends RuntimeException {
|
||||||
*
|
*
|
||||||
* @return the root cause
|
* @return the root cause
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public final Throwable getCause() {
|
public final Throwable getCause() {
|
||||||
return throwable;
|
return throwable;
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,6 +73,7 @@ public class BufferUnderflowException extends NoSuchElementException {
|
||||||
*
|
*
|
||||||
* @return the root cause
|
* @return the root cause
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
public final Throwable getCause() {
|
public final Throwable getCause() {
|
||||||
return throwable;
|
return throwable;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue