com.thoughtworks.gauge.execution.parameters.ParsingException Maven / Gradle / Ivy
/*----------------------------------------------------------------
* Copyright (c) ThoughtWorks, Inc.
* Licensed under the Apache License, Version 2.0
* See LICENSE.txt in the project root for license information.
*----------------------------------------------------------------*/
package com.thoughtworks.gauge.execution.parameters;
import gauge.messages.Spec.ProtoExecutionResult;
public class ParsingException extends Exception {
private static final long serialVersionUID = -4205182693938362914L;
private ProtoExecutionResult executionResult;
public ParsingException(ProtoExecutionResult executionResult) {
this.executionResult = executionResult;
}
public ProtoExecutionResult getExecutionResult() {
return executionResult;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy