Sha256: 84d59caff8d1fe5365c2e88cd729f191d1eb3cf2d3f34dd95b123a009aae73a6

Contents?: true

Size: 298 Bytes

Versions: 2

Compression:

Stored size: 298 Bytes

Contents

require_relative 'entity_not_found'

module DMAO
  module API
    module Errors

      class ProjectNotFound < EntityNotFound

        def initialize(msg="Invalid project id specified, id does not exist for requesting institution.")

          super(msg)

        end

      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dmao_api-0.6.0 lib/dmao/api/errors/project_not_found.rb
dmao_api-0.5.0 lib/dmao/api/errors/project_not_found.rb