NikolaGavric94/laravel-square

View on GitHub
src/exceptions/InvalidSquareAmountException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Nikolag\Square\Exceptions;

use Exception as PhpException;
use Nikolag\Square\Exception;

class InvalidSquareAmountException extends Exception
{
    public function __construct($message = null, $code = 0, PhpException $previous = null)
    {
        parent::__construct($message, $code, $previous);
    }
}