From b9e18abe4a881a638d0c6cfbbffeacea43813e86 Mon Sep 17 00:00:00 2001 From: marcandre Date: Wed, 23 Oct 2013 15:13:19 +0000 Subject: * lib/ostruct.rb: Raise RuntimeError when modifying frozen instances instead of TypeError. Patch by Kenichi Kamiya. [Fixes GH-383] * test/ostruct/test_ostruct.rb: Added tests for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43402 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/ostruct.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ostruct.rb') diff --git a/lib/ostruct.rb b/lib/ostruct.rb index df09cc953f..6b60bdf3fe 100644 --- a/lib/ostruct.rb +++ b/lib/ostruct.rb @@ -152,7 +152,7 @@ class OpenStruct begin @modifiable = true rescue - raise TypeError, "can't modify frozen #{self.class}", caller(3) + raise RuntimeError, "can't modify frozen #{self.class}", caller(3) end @table end -- cgit v1.2.3