quillstack/local-storage

View on GitHub
src/LocalStorageException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Quillstack\LocalStorage;

use RuntimeException;

class LocalStorageException extends RuntimeException
{
    /**
     * @var int
     */
    public const ERROR_CODE = 500;
}