~singpolyma/sgx-jmp

ref: f6896d17e30f8ded521beecd8107b17951c6ed10 sgx-jmp/lib/not_loaded.rb -rw-r--r-- 291 bytes
f6896d17Stephen Paul Weber Move CustomerFwd behind Customer 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
	class NotLoadedError < StandardError; end

	def initialize(name)
		@name = name
	end

	def respond_to_missing?(*)
		true
	end

	def method_missing(*) # rubocop:disable Style/MethodMissing
		raise NotLoadedError, "#{@name} not loaded"
	end
end