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

com.pamirs.pradar.exception.PradarException Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.pamirs.pradar.exception;

/**
 * Created by xiaobin on 2017/1/19.
 */
@SuppressWarnings("serial")
public class PradarException extends RuntimeException {
    public PradarException() {
    }

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

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

    public PradarException(Throwable cause) {
        super(cause);
    }

    @Override
    public Throwable fillInStackTrace() {
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy