Hello All I have some code that I was duplicating across applications so I made it a plugin (engine actually). The engine works fine but the only problem is when I raise an error in the before_destroy method in my model (the model is not in the engine). Based on the example code below; if I have this code in a controller that is not in a engine I will get the following error: "Fee type is in use" Which is exactly what I want. However, if I have that exact same code in my engine I get the full path to the file that raised the error plus the error message "Fee type is in use". "/Users/weshays/temp/myapp/config/../app/models/fee_type.rb:6:in `before_destroy'': Fee type is in use" I cannot figure out how to only get the error message without the other stuff (path and method) as this could be a possible security risk. I have tried the different options for the raise method but with no luck. I am using Ruby 1.8.5 and Rails version 1.2.3. The following sample code is what''s in question. ---------------------------------- *** Model *** ... has_many :ga_locations def before_destroy raise ''Fee type is in use'' if self.ga_locations.count > 0 end ... *** Controller *** ... begin item.destroy rescue Exception => err flash[:error] = err.message end ... ---------------------------------- I am not sure if this is a rails or engines issue but I thought I would try the rails list first. Any help on this would be appreciated. Thanks, -Wes -- James "Wes" Hays Great Basin Development P.O.Box 3503, Reno, Nevada 89505 http://www.gbdev.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---