Skip to content

Instantly share code, notes, and snippets.

@denizfurkan
Last active June 12, 2019 20:22
Show Gist options
  • Save denizfurkan/295d12f3f15fe85d62a1b33ba10a43cb to your computer and use it in GitHub Desktop.
Save denizfurkan/295d12f3f15fe85d62a1b33ba10a43cb to your computer and use it in GitHub Desktop.
public void validation() throws ValidationException {
if(_cardNumber.contains("4543")){
System.out.println("Login Successful..");
}
else{
throw new ValidationException("Login Failed..");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment