Skip to content

Commit

Permalink
Fixed exception message to match the one in Component
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Apr 18, 2014
1 parent 7e16837 commit 4d235f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/base/Object.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public function __unset($name)
*/
public function __call($name, $params)
{
throw new UnknownMethodException('Unknown method: ' . get_class($this) . "::$name()");
throw new UnknownMethodException('Calling unknown method: ' . get_class($this) . "::$name()");
}

/**
Expand Down

0 comments on commit 4d235f9

Please sign in to comment.