class Blumquist::Errors::UnsupportedPointer

Public Class Methods

new(pointer:) click to toggle source
Calls superclass method
# File lib/blumquist/errors/unsupported_pointer.rb, line 4
    def initialize(pointer:)
      msg = %{
Pointer '#{pointer}' is not supported. Current supported formats are:\n
  1. #/key1/key2/.../keyN
  2. path_to_file.json
  3. path_to_file.json#/key1/key2/.../keyN
      }

      super(msg)
    end