mirror of
https://github.com/google/brotli.git
synced 2026-07-11 19:28:16 +00:00
26 lines
526 B
Java
26 lines
526 B
Java
|
|
/* Copyright 2015 Google Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
Distributed under MIT license.
|
||
|
|
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
|
||
|
|
*/
|
||
|
|
|
||
|
|
package org.brotli.dec;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Unchecked exception used internally.
|
||
|
|
*/
|
||
|
|
class BrotliRuntimeException extends RuntimeException {
|
||
|
|
|
||
|
|
BrotliRuntimeException(String message) {
|
||
|
|
super(message);
|
||
|
|
}
|
||
|
|
|
||
|
|
BrotliRuntimeException(String message, Throwable cause) {
|
||
|
|
super(message, cause);
|
||
|
|
}
|
||
|
|
|
||
|
|
BrotliRuntimeException(Throwable cause) {
|
||
|
|
super(cause);
|
||
|
|
}
|
||
|
|
}
|