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

com.mntviews.base.service.exception.BridgeBaseServiceException Maven / Gradle / Ivy

The newest version!
package com.mntviews.base.service.exception;

public class BridgeBaseServiceException extends RuntimeException {
    public BridgeBaseServiceException() {
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy