org.dellroad.stuff.pobj.PersistentObjectException Maven / Gradle / Ivy
/*
* Copyright (C) 2012 Archie L. Cobbs. All rights reserved.
*/
package org.dellroad.stuff.pobj;
/**
* Runtime exception thrown during {@link PersistentObject} operations.
*/
@SuppressWarnings("serial")
public class PersistentObjectException extends RuntimeException {
public PersistentObjectException() {
}
public PersistentObjectException(String message) {
super(message);
}
public PersistentObjectException(String message, Throwable cause) {
super(message, cause);
}
public PersistentObjectException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy