Talesoft/tale-stream

View on GitHub
src/Stream/Exception/NotWritableException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace Tale\Stream\Exception;

use RuntimeException;

/**
 * An exception that occurs when an attempt to write to an unwritable stream was made.
 *
 * @package Tale\Stream\Exception
 */
final class NotWritableException extends RuntimeException implements InvalidOperationExceptionInterface
{
}