Is there a way to determine what method you are in?

class myApp
    def mydef
       error = true;
       raise "#{self.class} : #{self.calling_method} error
    end
end

Something like the #{self.calling_method} above perhaps?

Thanks,

Zach