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

com.gateway.exception.PushException Maven / Gradle / Ivy

 
package com.gateway.exception;

public class PushException extends IllegalStateException {

    private static final long serialVersionUID = -4953949710626671131L;

    public PushException() {
        super();
    }

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

    public PushException(Throwable throwable) {
        super(throwable);
    }

    public PushException(String message, Throwable throwable) {
        super(message, throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy