Move NotImplementedHereException inside the interface (don't love it, but fine checkstyle)

This commit is contained in:
2025-01-31 14:45:27 -06:00
parent 40b4b55bf4
commit 1f416fcc43

View File

@ -265,24 +265,24 @@ public interface TableCustomizerInterface
return (Optional.empty());
}
}
}
/***************************************************************************
**
***************************************************************************/
class NotImplementedHereException extends QException
{
static NotImplementedHereException instance = new NotImplementedHereException();
/***************************************************************************
**
***************************************************************************/
public NotImplementedHereException()
class NotImplementedHereException extends QException
{
super("Not implemented here");
private static NotImplementedHereException instance = new NotImplementedHereException();
/***************************************************************************
**
***************************************************************************/
private NotImplementedHereException()
{
super("Not implemented here");
}
}
}