Updates to exceptions

This commit is contained in:
Alex Bilbie
2014-05-01 14:32:54 +01:00
parent 6981ced972
commit 9f1f0cc3bc
8 changed files with 24 additions and 56 deletions

View File

@@ -29,8 +29,8 @@ class InvalidCredentialsException extends OAuthException
/**
* {@inheritdoc}
*/
public function __construct($parameter)
public function __construct()
{
parent::__construct('The user credentials were incorrect..');
parent::__construct('The user credentials were incorrect.');
}
}