Added \RTEX\Abstracts > RuntimeExceptionCode

This commit is contained in:
Netkas 2022-12-27 02:46:25 -05:00
parent feb06cdb6b
commit fcfa860116

View file

@ -0,0 +1,16 @@
<?php
namespace RTEX\Abstracts;
abstract class RuntimeExceptionCode
{
const Exception = 0;
const AttributeException = -100;
const ImportException = -101;
const KeyException = -102;
const NameException = -103;
const TypeException = -104;
const ValueException = -105;
const ZeroDivisionException = -106;
}