16 lines
281 B
PHP
16 lines
281 B
PHP
<?php
|
|
/**
|
|
* Holds an exception class.
|
|
* @package Sakura
|
|
*/
|
|
|
|
namespace Sakura\Exceptions;
|
|
|
|
/**
|
|
* Thrown when Net doesn't know how to handle the IP type.
|
|
* @package Sakura
|
|
* @author Julian van de Groep <me@flash.moe>
|
|
*/
|
|
class NetAddressTypeException extends BaseException
|
|
{
|
|
}
|