use correct namespace
This commit is contained in:
parent
1875861735
commit
b0d5bdefa5
5 changed files with 6 additions and 8 deletions
18
Civi/Exceptions/ProfileException.php
Normal file
18
Civi/Exceptions/ProfileException.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace Civi\Twingle\Exceptions;
|
||||
|
||||
/**
|
||||
* A simple custom exception that indicates a problem within the
|
||||
* CRM_Twingle_Profile class
|
||||
*/
|
||||
class ProfileException extends BaseException {
|
||||
|
||||
public const ERROR_CODE_PROFILE_NOT_FOUND = 'profile_not_found';
|
||||
public const ERROR_CODE_DEFAULT_PROFILE_NOT_FOUND = 'default_profile_not_found';
|
||||
public const ERROR_CODE_COULD_NOT_SAVE_PROFILE = 'could_not_save_profile';
|
||||
public const ERROR_CODE_COULD_NOT_RESET_PROFILE = 'could_not_reset_profile';
|
||||
public const ERROR_CODE_COULD_NOT_DELETE_PROFILE = 'could_not_delete_profile';
|
||||
public const ERROR_CODE_UNKNOWN_PROFILE_ATTRIBUTE = 'unknown_profile_attribute';
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue