Module: Cucumber::Pro::Error

Defined in:
lib/cucumber/pro.rb

Constant Summary collapse

AccessDenied =
Class.new(StandardError) {
  def initialize
    super "Access denied."
  end
}
MissingToken =
Class.new(StandardError) {
  def initialize
    super "Missing access token. Please visit https://app.cucumber.pro/api-token for instructions."
  end
}