11 lines
200 B
PHP
11 lines
200 B
PHP
<?php
|
|
|
|
namespace OCA\SCIMServiceProvider\Exception;
|
|
|
|
use Exception;
|
|
|
|
class AuthException extends Exception {
|
|
public function __construct(string $message) {
|
|
parent::__construct($message, 401);
|
|
}
|
|
}
|