zertico/puppi

View on GitHub
lib/puppi/exceptions/invalid_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Puppi
  module Exceptions
    class InvalidHelper < StandardError
      def self.initialize
        super("The provided helper is invalid!")
      end
    end
  end
end