com.autonomy.aci.client.transport.AciHttpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aci-api Show documentation
Show all versions of aci-api Show documentation
Java client for communicating with IDOL ACI servers.
The newest version!
/*
* Copyright 2006-2018 Open Text.
*
* Licensed under the MIT License (the "License"); you may not use this file
* except in compliance with the License.
*
* The only warranties for products and services of Open Text and its affiliates
* and licensors ("Open Text") are as may be set forth in the express warranty
* statements accompanying such products and services. Nothing herein should be
* construed as constituting an additional warranty. Open Text shall not be
* liable for technical or editorial errors or omissions contained herein. The
* information contained herein is subject to change without notice.
*/
package com.autonomy.aci.client.transport;
/**
* Signals that an HTTP exception has occurred while trying to communicate with an ACI server.
*/
public class AciHttpException extends Exception {
private static final long serialVersionUID = 2946611096885409873L;
/**
* Constructs a new {@code AciHttpException} without a specified detail message.
*/
public AciHttpException() {
super();
}
/**
* Constructs a new {@code AciHttpException} with the specified detail message.
* @param msg The error message
*/
public AciHttpException(final String msg) {
super(msg);
}
/**
* Constructs a new {@code AciHttpException} with the specified nested {@code Throwable}.
* @param cause the exception or error that caused this exception to be thrown
*/
public AciHttpException(final Throwable cause) {
super(cause);
}
/**
* Constructs a new {@code AciHttpException} with the specified detail message and nested {@code Throwable}.
* @param msg the error message
* @param cause the exception or error that caused this exception to be thrown
*/
public AciHttpException(final String msg, final Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy