io.permazen.PermazenException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permazen-main Show documentation
Show all versions of permazen-main Show documentation
Permazen classes that map Java model classes onto the core API.
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package io.permazen;
/**
* Superclass of all unchecked exceptions thrown by the {@link Permazen} API.
*/
@SuppressWarnings("serial")
public class PermazenException extends RuntimeException {
public PermazenException() {
}
public PermazenException(String message) {
super(message);
}
public PermazenException(Throwable cause) {
super(cause);
}
public PermazenException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy