Updated \ncc\Abstracts > ExceptionCodes

https://git.n64.cc/nosial/ncc/-/issues/4
This commit is contained in:
Netkas 2022-12-18 00:24:48 -05:00
parent 79cec40f23
commit dd8d40989e

View file

@ -338,6 +338,16 @@
*/
const PackageFetchException = -1765;
/**
* @see InvalidBuildConfigurationException
*/
const InvalidBuildConfigurationException = -1766;
/**
* @see InvalidBuildConfigurationNameException
*/
const InvalidDependencyConfiguration = -1767;
/**
* All the exception codes from NCC
*/
@ -404,6 +414,8 @@
self::UnsupportedProjectTypeException,
self::UnsupportedArchiveException,
self::ArchiveException,
self::PackageFetchException
self::PackageFetchException,
self::InvalidBuildConfigurationException,
self::InvalidDependencyConfiguration,
];
}