. * @author niel */ namespace nntmux; /** * A `NetworkException` may be thrown whenever an unsuccessful attempt is made to connect to a * remote service over the network. This may be a web service, a database, or another network * resource. */ class NetworkException extends \RuntimeException { protected $code = 503; }