import axiom without dependency on symfony console
Some checks failed
abc-api/abcParser/pipeline/head There was a failure building this commit
Some checks failed
abc-api/abcParser/pipeline/head There was a failure building this commit
This commit is contained in:
13
axiom_src/Exceptions/AtomException.php
Normal file
13
axiom_src/Exceptions/AtomException.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?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}]."
|
||||
);
|
||||
}
|
||||
}
|
||||
10
axiom_src/Exceptions/AxiomException.php
Normal file
10
axiom_src/Exceptions/AxiomException.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace Enzyme\Axiom\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class AxiomException extends Exception
|
||||
{
|
||||
//
|
||||
}
|
||||
Reference in New Issue
Block a user