com.bazaarvoice.ostrich.exceptions.ServiceException Maven / Gradle / Ivy
package com.bazaarvoice.ostrich.exceptions;
public class ServiceException extends RuntimeException {
private static final long serialVersionUID = 0;
public ServiceException() {
super();
}
public ServiceException(String message) {
super(message);
}
public ServiceException(String message, Throwable cause) {
super(message, cause);
}
public ServiceException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy