File tree 5 files changed +7
-4
lines changed
5 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 42
42
for the patch.
43
43
* Applied an additional patch from Kouhei.
44
44
* Allowed comma in filter strings, suggested by Kouhei.
45
+ * 04Sep07, Changed four error classes to inherit from StandardError rather
46
+ Exception, in order to be friendlier to irb. Suggested by Kouhei.
47
+
45
48
46
49
== Net::LDAP 0.0.4: August 15, 2006
47
50
* Undeprecated Net::LDAP#modify. Thanks to Justin Forder for
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ module Net
33
33
34
34
module BER
35
35
36
- class BerError < Exception ; end
36
+ class BerError < StandardError ; end
37
37
38
38
39
39
class BerIdentifiedString < String
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ module Net
261
261
262
262
class LDAP
263
263
264
- class LdapError < Exception ; end
264
+ class LdapError < StandardError ; end
265
265
266
266
VERSION = "0.1.0"
267
267
Original file line number Diff line number Diff line change 31
31
module Net
32
32
33
33
34
- class LdapPduError < Exception ; end
34
+ class LdapPduError < StandardError ; end
35
35
36
36
37
37
class LdapPdu
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def to_ber
94
94
end
95
95
96
96
class SnmpPdu
97
- class Error < Exception ; end
97
+ class Error < StandardError ; end
98
98
99
99
PduTypes = [
100
100
:get_request ,
You can’t perform that action at this time.
0 commit comments