1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-13 18:32:41 +01:00
phorge-phorge/src/applications/phortune/exception/PhortuneNotImplementedException.php

12 lines
275 B
PHP
Raw Normal View History

<?php
final class PhortuneNotImplementedException extends Exception {
public function __construct(PhortunePaymentProvider $provider) {
$class = get_class($provider);
return parent::__construct(
"Provider '{$class}' does not implement this method.");
}
}