All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itextpdf.io.codec.brotli.dec.BrotliRuntimeException Maven / Gradle / Ivy

There is a newer version: 8.0.3
Show newest version
/* 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 com.itextpdf.io.codec.brotli.dec;

/**
 * Unchecked exception used internally.
 */
class BrotliRuntimeException extends RuntimeException {

  BrotliRuntimeException(String message) {
    super(message);
  }

  BrotliRuntimeException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy