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

de.bottlecaps.markup.BlitzException Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
// Copyright (c) 2023-2024 Gunther Rademacher. Provided under the Apache 2 License.

package de.bottlecaps.markup;

public class BlitzException extends RuntimeException {
  private static final long serialVersionUID = 1L;

  public BlitzException(String message, Throwable throwable) {
    super(message, throwable);
  }

  public BlitzException(String message) {
    super(message);
  }

  public BlitzException(Throwable throwable) {
    super(
        "Caught " + throwable.getClass().getSimpleName() + ": " + throwable.getMessage(),
        throwable);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy