EscolaLMS/payments

View on GitHub
src/Exceptions/ActionNotSupported.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace EscolaLms\Payments\Exceptions;

class ActionNotSupported extends PaymentException
{
    public function __construct()
    {
        parent::__construct(__('Gateway not supported this action'));
    }
}