org.dellroad.msrp.msg.ProtocolException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of msrp4j Show documentation
Show all versions of msrp4j Show documentation
msrp4j is a Java library for the MSRP protocol defined by RFC 4975.
/*
* Copyright (C) 2014 Archie L. Cobbs. All rights reserved.
*/
package org.dellroad.msrp.msg;
import java.io.IOException;
/**
* Exception thrown by a {@link BoundaryInputParser}, {@link LineInputParser}, or {@link MsrpInputParser}
* when a protocol violation is detected or a size limit is exceeded.
*/
@SuppressWarnings("serial")
public class ProtocolException extends IOException {
public ProtocolException() {
}
public ProtocolException(String message) {
super(message);
}
public ProtocolException(String message, Throwable cause) {
super(message, cause);
}
public ProtocolException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy