1.0.0 Alpha Release #59

Merged
netkas merged 213 commits from v1.0.0_alpha into master 2023-01-29 23:27:58 +00:00
Showing only changes of commit 893166ebf8 - Show all commits

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,
]; ];
} }