Page MenuHomeDevCentral

InstanceNotFoundException.php
No OneTemporary

InstanceNotFoundException.php

<?php
namespace Nasqueron\SAAS;
use Throwable;
class InstanceNotFoundException extends SaaSException {
/**
* @var string
*/
private $instance;
/**
* @var string
*/
const DEFAULT_MESSAGE = "The specified instance can't been found.";
public function __construct (string $instance, string $message = "",
int $code = 0, Throwable $previous = null) {
$this->instance = $instance;
if ($message === "") {
$message = self::DEFAULT_MESSAGE;
}
parent::__construct($message, $code, $previous);
}
public function getInstance () : string {
return $this->instance;
}
public function setInstance (string $instance) : void {
$this->instance = $instance;
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Dec 26, 16:28 (8 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2315206
Default Alt Text
InstanceNotFoundException.php (806 B)

Event Timeline