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