Created
November 29, 2017 18:18
-
-
Save ShmuelMofrad/6c0f009e91c4d5405caa0fd359c53a0b to your computer and use it in GitHub Desktop.
Exception to throw in java for not supported or implemented method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class NotImplementedException { | |
public static void main(String[] args) { | |
NewUseCase(); | |
} | |
static void NewUseCase() { | |
//TODO Should be implemented. | |
throw new UnsupportedOperationException("not yet implemented and should be implemented!"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment