We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aa7f94 commit 330cc0dCopy full SHA for 330cc0d
Exception/AuthFailed.php
@@ -0,0 +1,18 @@
1
+<?php
2
+/**
3
+ * SocialConnect project
4
+ * @author: Patsura Dmitry https://github.com/ovr <talk@dmtry.me>
5
+ */
6
+
7
+namespace SocialConnect\Provider\Exception;
8
9
10
+ * This exception is a base exception when we cannot auth user on callback url
11
12
+abstract class AuthFailed extends \SocialConnect\Common\Exception
13
+{
14
+ public function __construct($message = 'Auth failed')
15
+ {
16
+ parent::__construct($message);
17
+ }
18
+}
0 commit comments