Nextcloud-App/lib/Exceptions/RoomNotFoundException.php

14 lines
239 B
PHP
Raw Normal View History

2021-09-19 14:55:30 +00:00
<?php
namespace OCA\UPschooling\Exceptions;
use OC\OCS\Exception;
use OC\OCS\Result;
class RoomNotFoundException extends Exception {
public function __construct()
{
parent::__construct(new Result(null, 404, 'Room not found'));
}
}