Sha256: c3168cb08982eca855ac3cafa4799dd3aa5bcf8cea6e8cb30369ca7eb8020e62
Contents?: true
Size: 427 Bytes
Versions: 2
Compression:
Stored size: 427 Bytes
Contents
# frozen_string_literal: true module LokaliseManager # The Error class provides a custom exception type for the LokaliseManager, # allowing the library to raise specific errors that can be easily identified # and handled separately from other StandardError exceptions in Ruby. class Error < StandardError # Initializes a new Error object def initialize(message = '') super end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
lokalise_manager-6.0.0 | lib/lokalise_manager/error.rb |
lokalise_manager-5.1.2 | lib/lokalise_manager/error.rb |