smaximov/schemaful

View on GitHub
lib/schemaful/error.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Schemaful
  # Base error class for Schemaful.
  class Error < StandardError; end

  # Base error class for all schema-related errors.
  class SchemaError < Error; end

  class ValidationError < SchemaError; end

  class ParseError < SchemaError; end

  class SerializeError < SchemaError; end
end