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,7 +265,6 @@ public interface TableCustomizerInterface
return (Optional.empty());
}
}
}
@ -274,15 +273,16 @@ public interface TableCustomizerInterface
***************************************************************************/
class NotImplementedHereException extends QException
{
static NotImplementedHereException instance = new NotImplementedHereException();
private static NotImplementedHereException instance = new NotImplementedHereException();
/***************************************************************************
**
***************************************************************************/
public NotImplementedHereException()
private NotImplementedHereException()
{
super("Not implemented here");
}
}
}