~singpolyma/sgx-jmp

ref: da30c371e56b8bb577897f1151b59c24e209127f sgx-jmp/lib/not_loaded.rb -rw-r--r-- 278 bytes
da30c371Stephen Paul Weber Allow finishing admin command 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class NotLoaded < BasicObject
	class NotLoadedError < ::StandardError; end

	def initialize(name)
		@name = name
	end

	def respond_to_missing?(*)
		true
	end

	def method_missing(*)
		::Kernel.raise NotLoadedError, "#{@name} not loaded"
	end
end