Add basic exception class

This commit is contained in:
Kijin Sung 2016-02-01 20:11:46 +09:00
parent 66994d35dc
commit 0012bb296e

View file

@ -0,0 +1,11 @@
<?php
namespace Rhymix\Framework;
/**
* The exception class.
*/
class Exception extends \Exception
{
}