Class MisbehavingNodeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
io.mokamint.node.MisbehavingNodeException
All Implemented Interfaces:
Serializable

public class MisbehavingNodeException extends Exception
An exception stating that a node is misbehaving, that is, performing in a buggy way. If the node is a local node, then this is an actual bug in its code. If, instead, the node is a remote node, then it might just be a byzantine node.
See Also:
  • Constructor Details

    • MisbehavingNodeException

      public MisbehavingNodeException()
      Creates a new exception.
    • MisbehavingNodeException

      public MisbehavingNodeException(String message)
      Creates a new exception with the given message.
      Parameters:
      message - the message
    • MisbehavingNodeException

      public MisbehavingNodeException(Throwable cause)
      Creates a new exception with the given cause.
      Parameters:
      cause - the cause
    • MisbehavingNodeException

      public MisbehavingNodeException(String message, Throwable cause)
      Creates a new exception with the given message and cause.
      Parameters:
      message - the message
      cause - the cause