diff options
Diffstat (limited to 'vendor/OAuth/OAuth1/Signature/Exception/UnsupportedHashAlgorithmException.php')
-rwxr-xr-x | vendor/OAuth/OAuth1/Signature/Exception/UnsupportedHashAlgorithmException.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/OAuth/OAuth1/Signature/Exception/UnsupportedHashAlgorithmException.php b/vendor/OAuth/OAuth1/Signature/Exception/UnsupportedHashAlgorithmException.php new file mode 100755 index 00000000..44c36ce7 --- /dev/null +++ b/vendor/OAuth/OAuth1/Signature/Exception/UnsupportedHashAlgorithmException.php @@ -0,0 +1,12 @@ +<?php + +namespace OAuth\OAuth1\Signature\Exception; + +use OAuth\Common\Exception\Exception; + +/** + * Thrown when an unsupported hash mechanism is requested in signature class. + */ +class UnsupportedHashAlgorithmException extends Exception +{ +} |