3031323334353637
@Override public void newUser(String username) throws IOException, UserAlreadyExistsException { if (!this.io.userFileExists(username)) { this.io.save(new User(username)); } else { throw new UserAlreadyExistsException(); } }