Last active
July 27, 2018 13:23
-
-
Save gartes/8dcebd1bcfa44345cc4bbf3deb7c7a33 to your computer and use it in GitHub Desktop.
Exception
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try{ | |
| throw new Exception( 'Error_Text' ); | |
| }catch (Exception $e){ | |
| JFactory::getApplication()->enqueueMessage( $e->getMessage() , 'error'); | |
| } | |
| // $e->getCode() | |
| // $e->getMessage() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment