Sha256: 7367294989ab1953e26c87538069f79273084f65db25addcdda34f523917c06d

Contents?: true

Size: 275 Bytes

Versions: 1

Compression:

Stored size: 275 Bytes

Contents

module NxtSchema
  module Application
    module Errors
      class SchemaError < ::String
        def initialize(application:, message:)
          super(message)
          @application = application
        end

        attr_reader :application
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nxt_schema-1.0.0 lib/nxt_schema/application/errors/schema_error.rb