Class UnimplementedOperationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.opentest4j.IncompleteExecutionException
org.opentest4j.TestAbortedException
be.seeseemelk.mockbukkit.UnimplementedOperationException
All Implemented Interfaces:
Serializable

public class UnimplementedOperationException extends org.opentest4j.TestAbortedException
Sometimes your code may use a method that is not yet implemented in MockBukkit. When this happens MockBukkit will, instead of returning placeholder values or failing your test, throw an UnimplementedOperationException.

This is a TestAbortedException and causes your Test to be skipped instead of just failing.

See Also:
  • Constructor Details

    • UnimplementedOperationException

      @Internal public UnimplementedOperationException()
      Constructs a new with a default message.
    • UnimplementedOperationException

      @Internal public UnimplementedOperationException(@NotNull @NotNull String message)
      Constructs a new with the provided message.
      Parameters:
      message - The message.