swagger_generator_flutter/lib/core/exceptions.dart

18 lines
557 B
Dart

/// Swagger CLI exceptions
///
/// This library provides a comprehensive exception hierarchy for the
/// Swagger code generator,
/// including parsing, generation, IO, and runtime errors.
library;
// Base exceptions and utilities
export 'exceptions/base.dart';
// Handler and factory
export 'exceptions/factory.dart';
// Specific exception types
export 'exceptions/generation_exceptions.dart';
export 'exceptions/handler.dart';
export 'exceptions/io_exceptions.dart';
export 'exceptions/parse_exceptions.dart';
export 'exceptions/runtime_exceptions.dart';