github.com/getgauge/gauge@v1.6.9/execution/exitcode.go (about) 1 /*---------------------------------------------------------------- 2 * Copyright (c) ThoughtWorks, Inc. 3 * Licensed under the Apache License, Version 2.0 4 * See LICENSE in the project root for license information. 5 *----------------------------------------------------------------*/ 6 7 package execution 8 9 const ( 10 // Success indicated successful operation 11 Success = 0 12 // ExecutionFailed indicates gauge's execution failed 13 ExecutionFailed = 1 14 // ParseFailed indicates one or more parse errors 15 ParseFailed = 2 16 // ValidationFailed indicates one or more validation errors 17 ValidationFailed = 3 18 )