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

io.permazen.PermazenException Maven / Gradle / Ivy

The newest version!

/*
 * 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