diff --git a/src/ncc/Abstracts/ExceptionCodes.php b/src/ncc/Abstracts/ExceptionCodes.php index 38b32da..dee6915 100644 --- a/src/ncc/Abstracts/ExceptionCodes.php +++ b/src/ncc/Abstracts/ExceptionCodes.php @@ -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, ]; } \ No newline at end of file