Laragear/Transbank

View on GitHub
src/Exceptions/UnknownException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Laragear\Transbank\Exceptions;

use RuntimeException;

class UnknownException extends RuntimeException implements TransbankException
{
    use HandlesException;

    /**
     * The log level to report to the app.
     *
     * @var string
     */
    public const LOG_LEVEL = LOG_CRIT;
}