org.jscep.transport.response.ContentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jscep Show documentation
Show all versions of jscep Show documentation
Java implementation of the Simple Certificate Enrollment Protocol
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