mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 15:09:04 +01:00
25 lines
401 B
PHP
25 lines
401 B
PHP
<?php
|
|
|
|
namespace Psalm\Exception;
|
|
|
|
use Exception;
|
|
|
|
final class UnresolvableConstantException extends Exception
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $class_name;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $const_name;
|
|
|
|
public function __construct(string $class_name, string $const_name)
|
|
{
|
|
$this->class_name = $class_name;
|
|
$this->const_name = $const_name;
|
|
}
|
|
}
|