* Add sigs and docs to transformers * Add sigs and docs to downloaders * Adds sigs and docs to importers
20 lines
438 B
Text
20 lines
438 B
Text
# frozen_string_literal: true
|
|
|
|
module Granblue
|
|
module Importers
|
|
class ImportError
|
|
attr_reader file_name: String
|
|
attr_reader details: String
|
|
|
|
def initialize: (file_name: String, details: String) -> void
|
|
|
|
private
|
|
|
|
def build_message: () -> String
|
|
end
|
|
|
|
def format_attributes: (
|
|
attributes: Hash[Symbol, String | Integer | Float | Boolean | Array[untyped] | nil]
|
|
) -> String
|
|
end
|
|
end
|