class Freshen::UnsupportedKernel

A RuntimeError subclass for when the current system's kernel is unsupported.

Attributes

kernel[R]

Public Class Methods

new(kernel) click to toggle source
# File lib/freshen/errors.rb, line 12
def initialize(kernel)
  @kernel = kernel
end

Public Instance Methods

to_s() click to toggle source
# File lib/freshen/errors.rb, line 16
def to_s
  "Freshen doesn't support a #{@kernel} kernel"
end