Sha256: bd9d3e35ae93533f98e8a5f585b97a1cbcebdfec1ff9fa8154ea98da0c554b64
Contents?: true
Size: 642 Bytes
Versions: 174
Compression:
Stored size: 642 Bytes
Contents
# Error that is used to raise an Issue. See {Puppet::Pops::Issues}. # class Puppet::Pops::SemanticError < RuntimeError attr_accessor :issue attr_accessor :semantic attr_accessor :options # @param issue [Puppet::Pops::Issues::Issue] the issue describing the severity and message # @param semantic [Puppet::Pops::Model::Locatable, nil] the expression causing the failure, or nil if unknown # @param options [Hash] an options hash with Symbol to value mapping - these are the arguments to the issue # def initialize(issue, semantic=nil, options = {}) @issue = issue @semantic = semantic @options = options end end
Version data entries
174 entries across 174 versions & 2 rubygems