Skip to content

Instantly share code, notes, and snippets.

@bwmarkle
Created August 8, 2022 17:36
Show Gist options
  • Save bwmarkle/f1ac669056bdf86c533410d2a0d8836d to your computer and use it in GitHub Desktop.
Save bwmarkle/f1ac669056bdf86c533410d2a0d8836d to your computer and use it in GitHub Desktop.
public class Foo {
public void setPassword(String password) {
if (password.length() > 7) {
throw new InvalidArgumentException("password");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment