1 /* OzoneObjectException.java2 */3 package org.ozoneDB;4 5 /**6 * represents an exception which was thrown within a method of an OzoneObject.7 * @author <a HREF="http://www.medium.net/">Medium.net</a>8 * @author Per Nyfelt9 *10 */11 12 public class OzoneObjectException extends RuntimeException implements java.io.Serializable {13 14 public OzoneObjectException(String message, Throwable cause) {15 super(message, cause);16 }17 18 public OzoneObjectException(Throwable cause) {19 super(cause);20 }21 }22