com.autonomy.aci.client.util.AciURLCodecException 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.util;
/**
* Thrown when the AciURLCodec
has encountered a failure condition during an encode or decode.
*/
public class AciURLCodecException extends RuntimeException {
private static final long serialVersionUID = 4326437867829713287L;
/**
* Constructs a new {@code AciURLCodecException} without a specified detail message.
*/
public AciURLCodecException() {
super();
}
/**
* Constructs a new {@code AciURLCodecException} with the specified detail message.
* @param msg The error message
*/
public AciURLCodecException(final String msg) {
super(msg);
}
/**
* Constructs a new {@code AciURLCodecException} with the specified nested {@code Throwable}.
* @param cause The exception or error that caused this exception to be thrown
*/
public AciURLCodecException(final Throwable cause) {
super(cause);
}
/**
* Constructs a new {@code AciURLCodecException} 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 AciURLCodecException(final String msg, final Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy