Refactor HttpInput::Str and rename some exceptions for consistency

This commit is contained in:
Alex Cabal 2024-01-18 11:15:59 -06:00
parent 2b5f4f55a2
commit ca3fc6dbfd
54 changed files with 163 additions and 159 deletions

View file

@ -39,7 +39,7 @@ class Payment extends PropertiesBase{
where UserId = ?
', [$this->User->Name, $this->User->UserId]);
}
catch(Exceptions\InvalidUserException){
catch(Exceptions\UserNotFoundException){
// User doesn't exist, create it now
$this->User->Create();
}