Rename SeException class to AppException

This commit is contained in:
Alex Cabal 2023-07-14 09:36:10 -05:00
parent 3a02ab281d
commit 12cf83a843
39 changed files with 45 additions and 45 deletions

View file

@ -1,6 +1,6 @@
<?
namespace Exceptions;
class InvalidCredentialsException extends SeException{
class InvalidCredentialsException extends AppException{
protected $message = 'Invalid credentials.';
}