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

io.pkts.framer.FramingException Maven / Gradle / Ivy

There is a newer version: 3.0.10
Show newest version
package io.pkts.framer;

import io.pkts.protocol.Protocol;

public class FramingException extends RuntimeException {
  private final Protocol protocol;

  FramingException(final String message, final Protocol protocol) {
    super(message);
    this.protocol = protocol;
  }

  public Protocol getProtocol() {
    return protocol;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy