Jump to content

Featured Replies

Posted

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;
			}
		}

 

Solved by Sonya*

Go to solution
  • Author

Can someone list me a place to find documentation on how to handle errors in IPS suite?

Recently Browsing 0

  • No registered users viewing this page.