com.simiacryptus.lang.NotImplementedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-util Show documentation
Show all versions of java-util Show documentation
Miscellaneous Utilities (Pure Java)
package com.simiacryptus.lang;
@SuppressWarnings("serial")
public class NotImplementedException extends RuntimeException
{
// Show a warning whenever this is referenced - We shoud implement it!
@Deprecated
public NotImplementedException()
{
super();
}
// Show a warning whenever this is referenced - We shoud implement it!
@Deprecated
public NotImplementedException(final String arg0)
{
super(arg0);
}
}