• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright 2015 Google Inc. All Rights Reserved.
2 
3    Distributed under MIT license.
4    See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5 */
6 
7 package org.brotli.dec;
8 
9 /**
10  * Unchecked exception used internally.
11  */
12 class BrotliRuntimeException extends RuntimeException {
13 
BrotliRuntimeException(String message)14   BrotliRuntimeException(String message) {
15     super(message);
16   }
17 
BrotliRuntimeException(String message, Throwable cause)18   BrotliRuntimeException(String message, Throwable cause) {
19     super(message, cause);
20   }
21 }
22