aboutsummaryrefslogtreecommitdiff
path: root/java/org/brotli/dec/BrotliRuntimeException.java
blob: 8e0d4a44d12e94f531cf88dc25166909768249db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* 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);
  }
}