src/Exceptions/NetworkException.php
<?php
namespace Laragear\Transbank\Exceptions;
use RuntimeException;
class NetworkException extends RuntimeException implements TransbankException
{
use HandlesException;
/**
* The log level to report to the app.
*
* @var string
*/
public const LOG_LEVEL = LOG_CRIT;
}