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

com.github.dreamroute.basic.exception.BasicException Maven / Gradle / Ivy

There is a newer version: 1.9.29-RELEASE
Show newest version
package com.github.dreamroute.basic.exception;

import java.io.Serializable;

/**
 * basic exception
 * 
 * @author w.dehai
 *
 */
public class BasicException extends RuntimeException implements Serializable {

    /**
     * 
     */
    private static final long serialVersionUID = -3432976754366248710L;

    public BasicException(String message) {
        super(message);
    }

    public BasicException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy