classpublicPriority 3
NoSuchBlockStateException
com.hypixel.hytale.server.core.universe.world.meta.state.exceptions.NoSuchBlockStateException
extends Exception
0
Methods
0
Public Methods
0
Fields
2
Constructors
Constructors
public
NoSuchBlockStateException(String message)public
NoSuchBlockStateException(Throwable cause)Inheritance
Parent
Current
Interface
Child
Use mouse wheel to zoom, drag to pan. Click nodes to navigate.
Source Code
package com.hypixel.hytale.server.core.universe.world.meta.state.exceptions;
public class NoSuchBlockStateException extends Exception {
public NoSuchBlockStateException(String message) {
super(message);
}
public NoSuchBlockStateException(Throwable cause) {
super(cause);
}
}