All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jscep.transport.response.ContentException Maven / Gradle / Ivy

There is a newer version: 2.5.6
Show newest version
package org.jscep.transport.response;

import net.jcip.annotations.Immutable;

import org.jscep.transport.TransportException;

/**
 * The ContentException is a specialised TransportException
 * which relates directly to invalid content being sent by a SCEP server.
 */
@Immutable
public class ContentException extends TransportException {
    private static final long serialVersionUID = -959127316844320818L;

    public ContentException(final Throwable cause) {
        super(cause);
    }

    public ContentException(final String message) {
        super(message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy