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.htmlunit.util.brotli;
8
9 /**
10 * Unchecked exception used internally.
11 */
12 class BrotliRuntimeException extends RuntimeException {
13
14 BrotliRuntimeException(String message) {
15 super(message);
16 }
17
18 BrotliRuntimeException(String message, Throwable cause) {
19 super(message, cause);
20 }
21 }