LarsNieuwenhuizen/ClubhouseConnector

View on GitHub
src/Exception/Connector/UndefinedMethodException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types = 1);

namespace LarsNieuwenhuizen\ClubhouseConnector\Exception\Connector;

use Exception;

final class UndefinedMethodException extends Exception
{

    protected $message = 'This method does not exist';
}