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

com.brihaspathee.zeus.exception.PayloadTrackerNotFoundException Maven / Gradle / Ivy

The newest version!
package com.brihaspathee.zeus.exception;

/**
 * Created in Intellij IDEA
 * User: Balaji Varadharajan
 * Date: 25, September 2022
 * Time: 7:14 AM
 * Project: Zeus
 * Package Name: com.brihaspathee.zeus.exception
 * To change this template use File | Settings | File and Code Template
 */
public class PayloadTrackerNotFoundException extends RuntimeException{

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy