All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rails-resources.config.initializers.java_throwable_monkey_patch.rb Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
if RUBY_PLATFORM =~ /java/
  class Java::JavaLang::Throwable
    def application_backtrace
      backtrace
    end
    def framework_backtrace
      backtrace
    end
    def clean_backtrace
      backtrace
    end
    def clean_message
      message
    end
    def blamed_files
      []
    end
  end
end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy