dadajuice/zephyrus

View on GitHub
src/Zephyrus/Exceptions/Session/SessionRefreshRateException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php namespace Zephyrus\Exceptions\Session;

class SessionRefreshRateException extends SessionException
{
    public function __construct()
    {
        parent::__construct("Session refresh rate must be positive int value.", 13009);
    }
}