Updated ExceptionCodes

This commit is contained in:
Netkas 2023-01-29 01:11:23 -05:00
parent f2d2839d0e
commit 893166ebf8

View file

@ -2,6 +2,8 @@
namespace ncc\Abstracts; namespace ncc\Abstracts;
use ncc\Exceptions\SymlinkException;
/** /**
* @author Zi Xing Narrakas * @author Zi Xing Narrakas
* @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved. * @copyright Copyright (C) 2022-2022. Nosial - All Rights Reserved.
@ -348,6 +350,11 @@
*/ */
const InvalidDependencyConfiguration = -1767; const InvalidDependencyConfiguration = -1767;
/**
* @see SymlinkException
*/
const SymlinkException = -1768;
/** /**
* All the exception codes from NCC * All the exception codes from NCC
*/ */
@ -417,5 +424,6 @@
self::PackageFetchException, self::PackageFetchException,
self::InvalidBuildConfigurationException, self::InvalidBuildConfigurationException,
self::InvalidDependencyConfiguration, self::InvalidDependencyConfiguration,
self::SymlinkException,
]; ];
} }