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

org.opensextant.annotations.DeepEyeException Maven / Gradle / Ivy

There is a newer version: 3.7.3
Show newest version
/*
 * IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII                  
 * 
 * OpenSextant/Xponents sub-project
 *      __                              
 *  ___/ /___  ___  ___  ___  __ __ ___ 
 * / _  // -_)/ -_)/ _ \/ -_)/ // // -_)
 * \_,_/ \__/ \__// .__/\__/ \_, / \__/ 
 *               /_/        /___/
 *               
 * IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII    
 * Copyright 2013, 2019 MITRE Corporation             
 */
package org.opensextant.annotations;

/**
 * Exception used when there is a user or system error related to data serialization or any sort of
 * Java object - to JSONification error.
 * 
 * @author ubaldino
 */
public class DeepEyeException extends Exception {

    private final static long serialVersionUID = 1234567890l;

    public DeepEyeException(Exception ex) {
        super(ex);
    }

    public DeepEyeException(String msg) {
        super(msg);
    }

    public DeepEyeException(String msg, Exception ex) {
        super(msg, ex);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy