Updated \ncc\Abstracts > ExceptionCodes
https://git.n64.cc/nosial/ncc/-/issues/4
This commit is contained in:
parent
79cec40f23
commit
dd8d40989e
1 changed files with 13 additions and 1 deletions
|
@ -338,6 +338,16 @@
|
||||||
*/
|
*/
|
||||||
const PackageFetchException = -1765;
|
const PackageFetchException = -1765;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see InvalidBuildConfigurationException
|
||||||
|
*/
|
||||||
|
const InvalidBuildConfigurationException = -1766;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see InvalidBuildConfigurationNameException
|
||||||
|
*/
|
||||||
|
const InvalidDependencyConfiguration = -1767;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All the exception codes from NCC
|
* All the exception codes from NCC
|
||||||
*/
|
*/
|
||||||
|
@ -404,6 +414,8 @@
|
||||||
self::UnsupportedProjectTypeException,
|
self::UnsupportedProjectTypeException,
|
||||||
self::UnsupportedArchiveException,
|
self::UnsupportedArchiveException,
|
||||||
self::ArchiveException,
|
self::ArchiveException,
|
||||||
self::PackageFetchException
|
self::PackageFetchException,
|
||||||
|
self::InvalidBuildConfigurationException,
|
||||||
|
self::InvalidDependencyConfiguration,
|
||||||
];
|
];
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue