Some checks failed
abc-api/abcParser/pipeline/head There was a failure building this commit
14 lines
264 B
PHP
14 lines
264 B
PHP
<?php
|
|
|
|
namespace Enzyme\Axiom\Exceptions;
|
|
|
|
class AtomException extends AxiomException
|
|
{
|
|
public function __construct($class, $value)
|
|
{
|
|
parent::__construct(
|
|
"The atom [{$class}] could not process the value [{$value}]."
|
|
);
|
|
}
|
|
}
|