- FFI gem (libptouch)、exe ptouch-print-png(PNG のみ) - ステータス 32 バイトを Hash に展開(parse_status / status_hash) - CMake: libptouch 共有ライブラリ(ptouch_shared) - RuboCop、gemspec(homepage / source_code_uri) Made-with: Cursor
13 lines
228 B
Ruby
13 lines
228 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Libptouch
|
|
class Error < StandardError
|
|
attr_reader :code
|
|
|
|
def initialize(code, message = nil)
|
|
@code = code
|
|
super(message || "libptouch error #{code}")
|
|
end
|
|
end
|
|
end
|