lib/samwise/error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Samwise
  module Error
    class InvalidFormat < StandardError
      def initialize(message: 'The format of the provided DUNS number is invalid')
        super(message)
      end
    end

    class ArgumentMissing < StandardError
    end
  end
end