Skip to content

Commit

Permalink
Merge pull request ruby-ldap#207 from georgemillo/patch-1
Browse files Browse the repository at this point in the history
Fixing incorrect error class name
  • Loading branch information
mtodd committed Jun 28, 2015
2 parents a2296e4 + 8df01f9 commit f154eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/net/ldap/connection.rb
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ def add(args)
pdu = queued_read(message_id)

if !pdu || pdu.app_tag != Net::LDAP::PDU::AddResponse
raise Net::LDAP::ResponseMissingError, "response missing or invalid"
raise Net::LDAP::ResponseMissingOrInvalidError, "response missing or invalid"
end

pdu
Expand Down

0 comments on commit f154eb3

Please sign in to comment.