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

com.upstox.feeder.exception.StreamerException Maven / Gradle / Ivy

package com.upstox.feeder.exception;

public class StreamerException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    // Constructor that accepts a message
    public StreamerException(String message) {
        super(message);
    }

    // Constructor that accepts a message and the cause
    public StreamerException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy