com.mntviews.base.service.exception.BridgeBaseServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mnt-base Show documentation
Show all versions of mnt-base Show documentation
Basis for mnt-bridge services
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);
}
}