This website requires JavaScript.
Explore
Help
Sign In
colin
/
bookstack
Watch
1
Star
0
Fork
You've already forked bookstack
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
b64c9b31d5
bookstack
/
app
/
Access
/
Oidc
/
OidcException.php
10 lines
99 B
PHP
Raw
Normal View
History
Unescape
Escape
Updated OIDC error handling for better error reporting Fixes issue where certain errors would not show to the user due to extra navigation jumps which lost the error message in the process. This simplifies and aligns exceptions with more directly handled exception usage at the controller level. Fixes #3264
2022-02-24 22:16:09 +08:00
<
?
php
Played around with a new app structure
2023-05-18 00:56:55 +08:00
namespace
BookStack\Access\Oidc
;
Updated OIDC error handling for better error reporting Fixes issue where certain errors would not show to the user due to extra navigation jumps which lost the error message in the process. This simplifies and aligns exceptions with more directly handled exception usage at the controller level. Fixes #3264
2022-02-24 22:16:09 +08:00
use
Exception
;
Applied latest StyleCI changes
2022-02-24 23:04:09 +08:00
class
OidcException
extends
Exception
{
}