Handle ConfigParser erros

This commit is contained in:
Ivan Kravets
2018-06-20 16:32:38 +03:00
parent c055ed4850
commit a9577bc0ba
2 changed files with 18 additions and 6 deletions

View File

@ -192,6 +192,11 @@ class InvalidLibConfURL(PlatformioException):
MESSAGE = "Invalid library config URL '{0}'"
class InvalidProjectConf(PlatformioException):
MESSAGE = "Invalid `platformio.ini`, project configuration file: '{0}'"
class BuildScriptNotFound(PlatformioException):
MESSAGE = "Invalid path '{0}' to build script"