Package me.wobblyyyy.pathfinder.error
Class UnimplementedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
me.wobblyyyy.pathfinder.error.UnimplementedException
- All Implemented Interfaces:
java.io.Serializable
public class UnimplementedException
extends java.lang.Exception
Exception to be thrown when a portion of code isn't fully implemented
yet and, as a result, isn't yet ready for use.
If you're seeing this error, I hate to break it to you, but you're flat out of luck. You'll have to either make your own method or... suffer.
- Since:
- 0.1.0
- Author:
- Colin Robertson
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description UnimplementedException(java.lang.String exception)
Throw a new UnimplementedException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
UnimplementedException
public UnimplementedException(java.lang.String exception)Throw a new UnimplementedException.If you're seeing this error, I hate to break it to you, but you're flat out of luck. You'll have to either make your own method or... suffer.
- Parameters:
exception
- the exception message.
-