de.bottlecaps.markup.BlitzException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of markup-blitz Show documentation
Show all versions of markup-blitz Show documentation
Markup Blitz Parser Generator
// 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