com.aeontronix.enhancedmule.tools.util.restclient.ResponseParsingException Maven / Gradle / Ivy
/*
* Copyright (c) Aeontronix 2020
*/
package com.aeontronix.enhancedmule.tools.util.restclient;
public class ResponseParsingException extends RuntimeException {
public ResponseParsingException() {
}
public ResponseParsingException(String message) {
super(message);
}
public ResponseParsingException(String message, Throwable cause) {
super(message, cause);
}
public ResponseParsingException(Throwable cause) {
super(cause);
}
public ResponseParsingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy