spotonlive/sl-navigation

View on GitHub
src/SpotOnLive/Navigation/Exceptions/NoRouteException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SpotOnLive\Navigation\Exceptions;

use Exception;

class NoRouteException extends Exception
{
    public function __construct()
    {
        return parent::__construct('Please provide a route or url');
    }
}