scimserviceprovider/lib/Exception/AuthException.php

12 lines
200 B
PHP
Raw Permalink Normal View History

2023-03-03 11:21:27 +00:00
<?php
namespace OCA\SCIMServiceProvider\Exception;
use Exception;
2024-02-06 10:32:35 +00:00
class AuthException extends Exception {
public function __construct(string $message) {
parent::__construct($message, 401);
}
}