Jump to content

Error Codes


Seth Jones
Go to solution Solved by Sonya*,

Recommended Posts

How exactly does Invision Power Board handle error logs and messages?

 

Generally we use try catch.

		catch ( \RuntimeException $e )
		{
			if ( method_exists( get_parent_class(), __FUNCTION__ ) )
			{
				return \call_user_func_array( 'parent::' . __FUNCTION__, \func_get_args() );
			}
			else
			{
				throw $e;
			}
		}

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...