orionis 0.568.0__tar.gz → 0.570.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {orionis-0.568.0/orionis.egg-info → orionis-0.570.0}/PKG-INFO +1 -1
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/args/argument.py +1 -1
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/core/reactor.py +67 -50
- orionis-0.570.0/orionis/console/exceptions/__init__.py +15 -0
- orionis-0.570.0/orionis/console/exceptions/cli_exception.py +118 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/request/cli_request.py +1 -1
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/stub/command.stub +1 -1
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/tasks/schedule.py +1 -1
- {orionis-0.568.0 → orionis-0.570.0}/orionis/metadata/framework.py +1 -1
- {orionis-0.568.0 → orionis-0.570.0/orionis.egg-info}/PKG-INFO +1 -1
- {orionis-0.568.0 → orionis-0.570.0}/orionis.egg-info/SOURCES.txt +0 -3
- orionis-0.568.0/orionis/console/exceptions/__init__.py +0 -11
- orionis-0.568.0/orionis/console/exceptions/cli_exception.py +0 -41
- orionis-0.568.0/orionis/console/exceptions/cli_orionis_value_error.py +0 -41
- orionis-0.568.0/orionis/console/exceptions/cli_runtime_error.py +0 -41
- orionis-0.568.0/orionis/console/exceptions/cli_schedule_exception.py +0 -41
- {orionis-0.568.0 → orionis-0.570.0}/LICENCE +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/MANIFEST.in +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/README.md +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/app.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/args/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/base/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/base/command.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/base/scheduler.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/base/scheduler_event_listener.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/cache.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/help.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/make_listener.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/publisher.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/scheduler_list.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/scheduler_work.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/test.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/version.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/commands/workflow.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/base_command.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/base_scheduler.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/cli_request.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/command.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/console.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/debug.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/event.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/executor.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/kernel.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/progress_bar.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/reactor.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/schedule.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/contracts/schedule_event_listener.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/core/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/dumper/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/dumper/debug.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/dynamic/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/dynamic/progress_bar.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/command.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/event.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/event_job.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/scheduler_error.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/scheduler_event_data.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/scheduler_paused.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/scheduler_resumed.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/scheduler_shutdown.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/entities/scheduler_started.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/enums/actions.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/enums/listener.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/enums/styles.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/fluent/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/fluent/command.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/fluent/event.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/kernel.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/output/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/output/console.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/output/executor.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/request/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/stub/listener.stub +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/console/tasks/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/container.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/context/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/context/manager.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/context/scope.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/contracts/container.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/contracts/service_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/entities/binding.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/enums/lifetimes.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/exceptions/attribute.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/exceptions/exception.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/exceptions/type.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/exceptions/value.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/facades/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/facades/facade.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/providers/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/providers/service_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/implements.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/is_abstract_class.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/is_callable.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/is_concrete_class.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/is_instance.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/is_not_subclass.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/is_subclass.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/is_valid_alias.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/container/validators/lifetime.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/base/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/base/handler.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/catch.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/contracts/catch.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/contracts/handler.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/failure/entities/throwable.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/application.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/app/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/app/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/app/entities/app.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/app/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/app/enums/ciphers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/app/enums/environments.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/auth/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/auth/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/auth/entities/auth.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cache/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cache/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cache/entities/cache.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cache/entities/file.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cache/entities/stores.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cache/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cache/enums/drivers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cors/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cors/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/cors/entities/cors.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/entities/connections.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/entities/database.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/entities/mysql.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/entities/oracle.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/entities/pgsql.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/entities/sqlite.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/mysql_charsets.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/mysql_collations.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/mysql_engine.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/oracle_encoding.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/oracle_nencoding.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/pgsql_charsets.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/pgsql_collations.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/pgsql_mode.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/sqlite_foreign_key.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/sqlite_journal.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/database/enums/sqlite_synchronous.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/filesystems/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/filesystems/entitites/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/filesystems/entitites/aws.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/filesystems/entitites/disks.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/filesystems/entitites/filesystems.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/filesystems/entitites/local.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/filesystems/entitites/public.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/channels.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/chunked.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/daily.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/hourly.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/logging.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/monthly.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/stack.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/entities/weekly.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/enums/levels.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/validators/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/validators/level.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/logging/validators/path.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/mail/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/mail/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/mail/entities/file.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/mail/entities/mail.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/mail/entities/mailers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/mail/entities/smtp.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/queue/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/queue/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/queue/entities/brokers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/queue/entities/database.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/queue/entities/queue.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/queue/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/queue/enums/strategy.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/roots/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/roots/paths.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/session/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/session/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/session/entities/session.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/session/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/session/enums/same_site_policy.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/session/helpers/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/session/helpers/secret_key.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/startup.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/testing/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/testing/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/testing/entities/testing.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/testing/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/testing/enums/drivers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/testing/enums/mode.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/config/testing/enums/verbosity.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/contracts/application.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/contracts/config.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/exceptions/integrity.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/exceptions/runtime.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/exceptions/type.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/exceptions/value.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/catch_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/cli_request_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/console_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/directory_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/dumper_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/executor_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/inspirational_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/logger_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/performance_counter_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/progress_bar_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/reactor_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/scheduler_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/testing_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/foundation/providers/workers_provider.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/metadata/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/metadata/package.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/asynchrony/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/asynchrony/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/asynchrony/contracts/coroutines.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/asynchrony/coroutines.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/asynchrony/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/asynchrony/exceptions/exception.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/encrypter/encrypter.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/contracts/caster.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/contracts/env.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/core/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/core/dot_env.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/dynamic/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/dynamic/caster.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/enums/value_type.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/env.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/exceptions/exception.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/exceptions/value.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/helpers/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/helpers/functions.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/key/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/key/key_generator.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/validators/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/validators/key_name.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/environment/validators/types.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/file/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/file/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/file/contracts/directory.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/file/directory.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/inspirational/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/inspirational/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/inspirational/contracts/inspire.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/inspirational/inspire.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/inspirational/quotes.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/abstract/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/abstract/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/abstract/contracts/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/abstract/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/callables/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/callables/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/callables/contracts/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/callables/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/concretes/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/concretes/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/concretes/contracts/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/concretes/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dataclass/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dataclass/attributes.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dependencies/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dependencies/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dependencies/contracts/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dependencies/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dependencies/entities/argument.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dependencies/entities/resolve_argument.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/dependencies/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/exceptions/attribute.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/exceptions/type.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/exceptions/value.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/instances/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/instances/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/instances/contracts/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/instances/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/modules/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/modules/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/modules/contracts/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/modules/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/objects/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/objects/types.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/introspection/reflection.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/contracts/log_service.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/exceptions/runtime.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/handlers/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/handlers/filename.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/handlers/size_rotating.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/handlers/timed_rotating.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/log/log_service.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/system/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/system/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/system/contracts/imports.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/system/contracts/workers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/system/imports.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/system/runtime/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/system/runtime/imports.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/services/system/workers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/entities/base.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/application.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/application.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/console.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/console.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/directory.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/directory.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/dumper.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/dumper.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/executor.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/executor.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/inspire.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/inspire.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/logger.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/logger.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/performance_counter.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/performance_counter.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/progress_bar.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/progress_bar.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/reactor.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/reactor.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/testing.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/testing.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/workers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/facades/workers.pyi +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/formatter/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/formatter/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/formatter/exceptions/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/formatter/exceptions/contracts/parser.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/formatter/exceptions/parser.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/formatter/serializer.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/patterns/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/patterns/singleton/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/patterns/singleton/meta.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/performance/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/performance/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/performance/contracts/counter.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/performance/counter.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/standard/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/standard/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/standard/contracts/std.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/standard/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/standard/exceptions/value.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/standard/std.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/wrapper/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/support/wrapper/dot_dict.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/cases/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/cases/asynchronous.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/cases/synchronous.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/contracts/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/contracts/dumper.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/contracts/kernel.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/contracts/logs.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/contracts/printer.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/contracts/render.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/contracts/test_result.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/contracts/unit_test.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/core/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/core/unit_test.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/entities/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/entities/result.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/enums/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/enums/status.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/exceptions/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/exceptions/config.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/exceptions/failure.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/exceptions/persistence.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/exceptions/runtime.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/exceptions/value.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/kernel.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/output/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/output/dumper.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/output/printer.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/records/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/records/logs.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/base_path.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/execution_mode.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/fail_fast.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/folder_path.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/module_name.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/name_pattern.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/pattern.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/persistent.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/persistent_driver.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/print_result.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/tags.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/throw_exception.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/verbosity.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/web_report.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/validators/workers.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/view/__init__.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/view/render.py +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis/test/view/report.stub +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis.egg-info/dependency_links.txt +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis.egg-info/not-zip-safe +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis.egg-info/requires.txt +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/orionis.egg-info/top_level.txt +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/setup.cfg +0 -0
- {orionis-0.568.0 → orionis-0.570.0}/setup.py +0 -0
@@ -2,7 +2,7 @@ import argparse
|
|
2
2
|
from dataclasses import dataclass, field
|
3
3
|
from typing import Any, Optional, List, Type, Union, Dict
|
4
4
|
from orionis.console.enums.actions import ArgumentAction
|
5
|
-
from orionis.console.exceptions
|
5
|
+
from orionis.console.exceptions import CLIOrionisValueError
|
6
6
|
|
7
7
|
@dataclass(kw_only=True, frozen=True, slots=True)
|
8
8
|
class CLIArgument:
|
@@ -10,9 +10,9 @@ from orionis.console.contracts.cli_request import ICLIRequest
|
|
10
10
|
from orionis.console.contracts.command import ICommand
|
11
11
|
from orionis.console.contracts.reactor import IReactor
|
12
12
|
from orionis.console.entities.command import Command
|
13
|
-
from orionis.console.exceptions import CLIOrionisValueError
|
14
|
-
from orionis.console.exceptions.cli_runtime_error import CLIOrionisRuntimeError
|
13
|
+
from orionis.console.exceptions import CLIOrionisValueError, CLIOrionisRuntimeError
|
15
14
|
from orionis.console.contracts.executor import IExecutor
|
15
|
+
from orionis.console.exceptions import CLIOrionisTypeError
|
16
16
|
from orionis.console.request.cli_request import CLIRequest
|
17
17
|
from orionis.foundation.contracts.application import IApplication
|
18
18
|
from orionis.services.introspection.modules.reflection import ReflectionModule
|
@@ -107,6 +107,7 @@ class Reactor(IReactor):
|
|
107
107
|
- The internal `__load_commands` flag tracks whether commands have been loaded
|
108
108
|
- Both loading methods handle their own error handling and validation
|
109
109
|
"""
|
110
|
+
|
110
111
|
# Check if commands have already been loaded to prevent duplicate loading
|
111
112
|
if not self.__load_commands:
|
112
113
|
|
@@ -210,39 +211,47 @@ class Reactor(IReactor):
|
|
210
211
|
f"Failed to read file '{file_path}' for fluent command loading: {e}"
|
211
212
|
) from e
|
212
213
|
|
214
|
+
# Import Command entity here to avoid circular imports
|
215
|
+
from orionis.console.entities.command import Command as CommandEntity
|
216
|
+
|
213
217
|
# Iterate through all fluent command definitions
|
214
218
|
for f_command in self.__fluent_commands:
|
215
219
|
|
216
|
-
#
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
220
|
+
# If the fluent command has a get method, retrieve its signature and command entity
|
221
|
+
if hasattr(f_command, 'get') and callable(getattr(f_command, 'get')):
|
222
|
+
|
223
|
+
# Get the signature and command entity from the fluent command
|
224
|
+
values = f_command.get()
|
225
|
+
signature: str = values[0]
|
226
|
+
command_entity: CommandEntity = values[1]
|
227
|
+
|
228
|
+
# Build the arguments dictionary from the CLIArgument instances
|
229
|
+
required_args: List[CLIArgument] = command_entity.args
|
230
|
+
|
231
|
+
# Create an ArgumentParser instance to handle the command arguments
|
232
|
+
arg_parser = argparse.ArgumentParser(
|
233
|
+
usage=f"python -B reactor {signature} [options]",
|
234
|
+
description=f"Command [{signature}] : {command_entity.description}",
|
235
|
+
formatter_class=argparse.RawTextHelpFormatter,
|
236
|
+
add_help=True,
|
237
|
+
allow_abbrev=False,
|
238
|
+
exit_on_error=True,
|
239
|
+
prog=signature
|
240
|
+
)
|
236
241
|
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
signature=
|
243
|
-
|
244
|
-
|
245
|
-
|
242
|
+
# Iterate through each CLIArgument and add it to the ArgumentParser
|
243
|
+
for arg in required_args:
|
244
|
+
arg.addToParser(arg_parser)
|
245
|
+
|
246
|
+
# Register the command in the internal registry with all its metadata
|
247
|
+
self.__commands[signature] = Command(
|
248
|
+
obj=command_entity.obj,
|
249
|
+
method=command_entity.method,
|
250
|
+
timestamps=command_entity.timestamps,
|
251
|
+
signature=signature,
|
252
|
+
description=command_entity.description,
|
253
|
+
args=arg_parser
|
254
|
+
)
|
246
255
|
|
247
256
|
def __loadCoreCommands(self) -> None:
|
248
257
|
"""
|
@@ -293,9 +302,15 @@ class Reactor(IReactor):
|
|
293
302
|
# Iterate through the core command classes and register them
|
294
303
|
for obj in core_commands:
|
295
304
|
|
305
|
+
# Get the signature attribute from the command class
|
306
|
+
signature = getattr(obj, 'signature', None)
|
307
|
+
|
308
|
+
# Skip if signature is not defined
|
309
|
+
if signature is None:
|
310
|
+
continue
|
311
|
+
|
296
312
|
# Validate and extract required command attributes
|
297
313
|
timestamp = self.__ensureTimestamps(obj)
|
298
|
-
signature = getattr(obj, 'signature', None)
|
299
314
|
description = self.__ensureDescription(obj)
|
300
315
|
args = self.__ensureArguments(obj)
|
301
316
|
|
@@ -338,6 +353,8 @@ class Reactor(IReactor):
|
|
338
353
|
|
339
354
|
# Iterate through the command path and load command modules
|
340
355
|
for current_directory, _, files in os.walk(commands_path):
|
356
|
+
|
357
|
+
# Iterate through each file in the current directory
|
341
358
|
for file in files:
|
342
359
|
|
343
360
|
# Only process Python files
|
@@ -418,7 +435,7 @@ class Reactor(IReactor):
|
|
418
435
|
|
419
436
|
# Ensure the timestamps attribute is a boolean type
|
420
437
|
if not isinstance(obj.timestamps, bool):
|
421
|
-
raise
|
438
|
+
raise CLIOrionisTypeError(f"Command class {obj.__name__} 'timestamps' must be a boolean.")
|
422
439
|
|
423
440
|
# Return timestamps value
|
424
441
|
return obj.timestamps
|
@@ -444,24 +461,24 @@ class Reactor(IReactor):
|
|
444
461
|
|
445
462
|
Raises
|
446
463
|
------
|
447
|
-
|
464
|
+
CLIOrionisValueError
|
448
465
|
If the command class lacks a 'signature' attribute, if the signature
|
449
466
|
is an empty string, or if the signature doesn't match the required pattern.
|
450
|
-
|
467
|
+
CLIOrionisTypeError
|
451
468
|
If the 'signature' attribute is not a string.
|
452
469
|
"""
|
453
470
|
|
454
471
|
# Check if the command class has a signature attribute
|
455
472
|
if not hasattr(obj, 'signature'):
|
456
|
-
raise
|
473
|
+
raise CLIOrionisValueError(f"Command class {obj.__name__} must have a 'signature' attribute.")
|
457
474
|
|
458
475
|
# Ensure the signature attribute is a string type
|
459
476
|
if not isinstance(obj.signature, str):
|
460
|
-
raise
|
477
|
+
raise CLIOrionisTypeError(f"Command class {obj.__name__} 'signature' must be a string.")
|
461
478
|
|
462
479
|
# Validate that the signature is not empty after stripping whitespace
|
463
480
|
if obj.signature.strip() == '':
|
464
|
-
raise
|
481
|
+
raise CLIOrionisValueError(f"Command class {obj.__name__} 'signature' cannot be an empty string.")
|
465
482
|
|
466
483
|
# Define the regex pattern for valid signature format
|
467
484
|
# Pattern allows: alphanumeric chars, underscores, colons
|
@@ -470,7 +487,7 @@ class Reactor(IReactor):
|
|
470
487
|
|
471
488
|
# Validate the signature against the required pattern
|
472
489
|
if not re.match(pattern, obj.signature):
|
473
|
-
raise
|
490
|
+
raise CLIOrionisValueError(f"Command class {obj.__name__} 'signature' must contain only alphanumeric characters, underscores (_) and colons (:), cannot start or end with underscore or colon, and cannot start with a number.")
|
474
491
|
|
475
492
|
# Return signature
|
476
493
|
return obj.signature.strip()
|
@@ -496,24 +513,24 @@ class Reactor(IReactor):
|
|
496
513
|
|
497
514
|
Raises
|
498
515
|
------
|
499
|
-
|
516
|
+
CLIOrionisValueError
|
500
517
|
If the command class lacks a 'description' attribute or if the description
|
501
518
|
is an empty string after stripping whitespace.
|
502
|
-
|
519
|
+
CLIOrionisTypeError
|
503
520
|
If the 'description' attribute is not a string type.
|
504
521
|
"""
|
505
522
|
|
506
523
|
# Check if the command class has a description attribute
|
507
524
|
if not hasattr(obj, 'description'):
|
508
|
-
raise
|
525
|
+
raise CLIOrionisValueError(f"Command class {obj.__name__} must have a 'description' attribute.")
|
509
526
|
|
510
527
|
# Ensure the description attribute is a string type
|
511
528
|
if not isinstance(obj.description, str):
|
512
|
-
raise
|
529
|
+
raise CLIOrionisTypeError(f"Command class {obj.__name__} 'description' must be a string.")
|
513
530
|
|
514
531
|
# Validate that the description is not empty after stripping whitespace
|
515
532
|
if obj.description.strip() == '':
|
516
|
-
raise
|
533
|
+
raise CLIOrionisValueError(f"Command class {obj.__name__} 'description' cannot be an empty string.")
|
517
534
|
|
518
535
|
# Return description
|
519
536
|
return obj.description.strip()
|
@@ -538,7 +555,7 @@ class Reactor(IReactor):
|
|
538
555
|
|
539
556
|
Raises
|
540
557
|
------
|
541
|
-
|
558
|
+
CLIOrionisTypeError
|
542
559
|
If the 'arguments' attribute is not a list or contains non-CLIArgument instances.
|
543
560
|
"""
|
544
561
|
|
@@ -548,7 +565,7 @@ class Reactor(IReactor):
|
|
548
565
|
|
549
566
|
# Ensure the arguments attribute is a list type
|
550
567
|
if not isinstance(obj.arguments, list):
|
551
|
-
raise
|
568
|
+
raise CLIOrionisTypeError(f"Command class {obj.__name__} 'arguments' must be a list.")
|
552
569
|
|
553
570
|
# If arguments is empty, return None
|
554
571
|
if len(obj.arguments) == 0:
|
@@ -557,7 +574,7 @@ class Reactor(IReactor):
|
|
557
574
|
# Validate that all items in the arguments list are CLIArgument instances
|
558
575
|
for index, value in enumerate(obj.arguments):
|
559
576
|
if not isinstance(value, CLIArgument):
|
560
|
-
raise
|
577
|
+
raise CLIOrionisTypeError(f"Command class {obj.__name__} 'arguments' must contain only CLIArgument instances, found '{type(value).__name__}' at index {index}.")
|
561
578
|
|
562
579
|
# Build the arguments dictionary from the CLIArgument instances
|
563
580
|
required_args: List[CLIArgument] = obj.arguments
|
@@ -669,7 +686,7 @@ class Reactor(IReactor):
|
|
669
686
|
|
670
687
|
Raises
|
671
688
|
------
|
672
|
-
|
689
|
+
CLIOrionisTypeError
|
673
690
|
If the signature is not a string or if the handler is not a valid list.
|
674
691
|
ValueError
|
675
692
|
If the signature does not meet the required naming conventions.
|
@@ -680,11 +697,11 @@ class Reactor(IReactor):
|
|
680
697
|
|
681
698
|
# Validate the handler parameter
|
682
699
|
if len(handler) < 1 or not isinstance(handler, list):
|
683
|
-
raise
|
700
|
+
raise CLIOrionisValueError("Handler must be a list with at least one element (the callable).")
|
684
701
|
|
685
702
|
# Ensure the first element is a class
|
686
703
|
if not hasattr(handler[0], '__call__') or not hasattr(handler[0], '__name__'):
|
687
|
-
raise
|
704
|
+
raise CLIOrionisTypeError("The first element of handler must be a class.")
|
688
705
|
|
689
706
|
# Create a new FluentCommand instance with the provided signature and handler
|
690
707
|
f_command = FluentCommand(
|
@@ -0,0 +1,15 @@
|
|
1
|
+
from .cli_exception import (
|
2
|
+
CLIOrionisException,
|
3
|
+
CLIOrionisRuntimeError,
|
4
|
+
CLIOrionisScheduleException,
|
5
|
+
CLIOrionisValueError,
|
6
|
+
CLIOrionisTypeError
|
7
|
+
)
|
8
|
+
|
9
|
+
__all__ = [
|
10
|
+
'CLIOrionisException',
|
11
|
+
'CLIOrionisRuntimeError',
|
12
|
+
'CLIOrionisScheduleException',
|
13
|
+
'CLIOrionisValueError',
|
14
|
+
'CLIOrionisTypeError',
|
15
|
+
]
|
@@ -0,0 +1,118 @@
|
|
1
|
+
class CLIOrionisException(Exception):
|
2
|
+
"""
|
3
|
+
Base exception for Orionis CLI errors.
|
4
|
+
|
5
|
+
This exception is raised for errors that are specific to the Orionis command-line interface (CLI)
|
6
|
+
operations. It serves as the base class for all CLI-related exceptions within the Orionis framework,
|
7
|
+
allowing for consistent error handling and identification of CLI-specific issues.
|
8
|
+
|
9
|
+
Parameters
|
10
|
+
----------
|
11
|
+
message : str, optional
|
12
|
+
An optional error message describing the exception.
|
13
|
+
|
14
|
+
Returns
|
15
|
+
-------
|
16
|
+
CLIOrionisException
|
17
|
+
An instance of the CLIOrionisException class.
|
18
|
+
|
19
|
+
Notes
|
20
|
+
-----
|
21
|
+
Subclass this exception to create more specific CLI-related exceptions as needed.
|
22
|
+
"""
|
23
|
+
pass # No additional implementation; serves as a base exception class.
|
24
|
+
|
25
|
+
|
26
|
+
class CLIOrionisValueError(ValueError):
|
27
|
+
"""
|
28
|
+
Exception for invalid CLI input values in Orionis.
|
29
|
+
|
30
|
+
Raised when a function receives an argument of the correct type but an inappropriate value
|
31
|
+
during CLI operations within the Orionis framework.
|
32
|
+
|
33
|
+
Parameters
|
34
|
+
----------
|
35
|
+
message : str, optional
|
36
|
+
An optional error message describing the value error.
|
37
|
+
|
38
|
+
Returns
|
39
|
+
-------
|
40
|
+
CLIOrionisValueError
|
41
|
+
An instance of the CLIOrionisValueError class.
|
42
|
+
|
43
|
+
Notes
|
44
|
+
-----
|
45
|
+
Use this exception to signal invalid or inappropriate values encountered during CLI operations.
|
46
|
+
"""
|
47
|
+
pass # Inherits from ValueError to indicate value-related errors.
|
48
|
+
|
49
|
+
|
50
|
+
class CLIOrionisRuntimeError(RuntimeError):
|
51
|
+
"""
|
52
|
+
Exception for runtime errors in Orionis CLI.
|
53
|
+
|
54
|
+
Raised when a runtime error occurs during the execution of CLI commands within the Orionis framework,
|
55
|
+
distinguishing these errors from other runtime errors.
|
56
|
+
|
57
|
+
Parameters
|
58
|
+
----------
|
59
|
+
message : str, optional
|
60
|
+
An optional error message describing the runtime error.
|
61
|
+
|
62
|
+
Returns
|
63
|
+
-------
|
64
|
+
CLIOrionisRuntimeError
|
65
|
+
An instance of the CLIOrionisRuntimeError class.
|
66
|
+
|
67
|
+
Notes
|
68
|
+
-----
|
69
|
+
Use this exception to handle runtime errors specific to CLI contexts.
|
70
|
+
"""
|
71
|
+
pass # Inherits from RuntimeError for CLI-specific runtime issues.
|
72
|
+
|
73
|
+
|
74
|
+
class CLIOrionisScheduleException(Exception):
|
75
|
+
"""
|
76
|
+
Exception for scheduling errors in Orionis CLI.
|
77
|
+
|
78
|
+
Raised when issues are encountered during scheduling tasks within the Orionis command-line interface.
|
79
|
+
|
80
|
+
Parameters
|
81
|
+
----------
|
82
|
+
message : str, optional
|
83
|
+
An optional error message describing the scheduling exception.
|
84
|
+
|
85
|
+
Returns
|
86
|
+
-------
|
87
|
+
CLIOrionisScheduleException
|
88
|
+
An instance of the CLIOrionisScheduleException class.
|
89
|
+
|
90
|
+
Notes
|
91
|
+
-----
|
92
|
+
Use this exception to signal errors related to scheduling operations in the CLI.
|
93
|
+
"""
|
94
|
+
pass # Used for errors related to scheduling operations.
|
95
|
+
|
96
|
+
|
97
|
+
class CLIOrionisTypeError(TypeError):
|
98
|
+
"""
|
99
|
+
Exception for invalid types in Orionis CLI.
|
100
|
+
|
101
|
+
Raised when an invalid type is encountered during command-line interface operations in the Orionis framework,
|
102
|
+
providing clearer context than the built-in TypeError.
|
103
|
+
|
104
|
+
Parameters
|
105
|
+
----------
|
106
|
+
message : str, optional
|
107
|
+
An optional error message describing the type error.
|
108
|
+
|
109
|
+
Returns
|
110
|
+
-------
|
111
|
+
CLIOrionisTypeError
|
112
|
+
An instance of the CLIOrionisTypeError class.
|
113
|
+
|
114
|
+
Notes
|
115
|
+
-----
|
116
|
+
Use this exception to handle type-related errors specific to CLI operations.
|
117
|
+
"""
|
118
|
+
pass # Inherits from TypeError for CLI-specific type errors.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
from typing import Any, List
|
2
2
|
from orionis.console.contracts.cli_request import ICLIRequest
|
3
|
-
from orionis.console.exceptions
|
3
|
+
from orionis.console.exceptions import CLIOrionisValueError
|
4
4
|
|
5
5
|
class CLIRequest(ICLIRequest):
|
6
6
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
from orionis.console.base.command import BaseCommand
|
2
2
|
from orionis.console.args.argument import CLIArgument
|
3
|
-
from orionis.console.exceptions
|
3
|
+
from orionis.console.exceptions import CLIOrionisRuntimeError
|
4
4
|
|
5
5
|
class {{class_name}}(BaseCommand):
|
6
6
|
"""
|
@@ -33,7 +33,7 @@ from orionis.console.entities.scheduler_started import SchedulerStarted
|
|
33
33
|
from orionis.console.entities.event import Event as EventEntity
|
34
34
|
from orionis.console.enums.listener import ListeningEvent
|
35
35
|
from orionis.console.exceptions import CLIOrionisRuntimeError
|
36
|
-
from orionis.console.exceptions
|
36
|
+
from orionis.console.exceptions import CLIOrionisValueError
|
37
37
|
from orionis.console.request.cli_request import CLIRequest
|
38
38
|
from orionis.failure.contracts.catch import ICatch
|
39
39
|
from orionis.foundation.contracts.application import IApplication
|
@@ -64,9 +64,6 @@ orionis/console/enums/listener.py
|
|
64
64
|
orionis/console/enums/styles.py
|
65
65
|
orionis/console/exceptions/__init__.py
|
66
66
|
orionis/console/exceptions/cli_exception.py
|
67
|
-
orionis/console/exceptions/cli_orionis_value_error.py
|
68
|
-
orionis/console/exceptions/cli_runtime_error.py
|
69
|
-
orionis/console/exceptions/cli_schedule_exception.py
|
70
67
|
orionis/console/fluent/__init__.py
|
71
68
|
orionis/console/fluent/command.py
|
72
69
|
orionis/console/fluent/event.py
|
@@ -1,11 +0,0 @@
|
|
1
|
-
from .cli_exception import CLIOrionisException
|
2
|
-
from .cli_runtime_error import CLIOrionisRuntimeError
|
3
|
-
from .cli_schedule_exception import CLIOrionisScheduleException
|
4
|
-
from .cli_orionis_value_error import CLIOrionisValueError
|
5
|
-
|
6
|
-
__all__ = [
|
7
|
-
'CLIOrionisException',
|
8
|
-
'CLIOrionisRuntimeError',
|
9
|
-
'CLIOrionisScheduleException',
|
10
|
-
'CLIOrionisValueError'
|
11
|
-
]
|
@@ -1,41 +0,0 @@
|
|
1
|
-
class CLIOrionisException(Exception):
|
2
|
-
"""
|
3
|
-
Custom exception raised when there is an issue with dumping the Orionis data.
|
4
|
-
|
5
|
-
Parameters
|
6
|
-
----------
|
7
|
-
message : str
|
8
|
-
The response message associated with the exception.
|
9
|
-
|
10
|
-
Attributes
|
11
|
-
----------
|
12
|
-
message : str
|
13
|
-
Stores the response message passed during initialization.
|
14
|
-
|
15
|
-
Methods
|
16
|
-
-------
|
17
|
-
__str__()
|
18
|
-
Returns a string representation of the exception, including the response message.
|
19
|
-
"""
|
20
|
-
|
21
|
-
def __init__(self, message: str):
|
22
|
-
"""
|
23
|
-
Initializes the CLIOrionisException with the given response message.
|
24
|
-
|
25
|
-
Parameters
|
26
|
-
----------
|
27
|
-
message : str
|
28
|
-
The response message associated with the exception.
|
29
|
-
"""
|
30
|
-
super().__init__(message)
|
31
|
-
|
32
|
-
def __str__(self):
|
33
|
-
"""
|
34
|
-
Returns a string representation of the exception, including the response message.
|
35
|
-
|
36
|
-
Returns
|
37
|
-
-------
|
38
|
-
str
|
39
|
-
A string containing the exception name and the response message.
|
40
|
-
"""
|
41
|
-
return f"CLIOrionisException: {self.args[0]}"
|
@@ -1,41 +0,0 @@
|
|
1
|
-
class CLIOrionisValueError(ValueError):
|
2
|
-
"""
|
3
|
-
Custom exception raised when there is a value error in Orionis data processing.
|
4
|
-
|
5
|
-
Parameters
|
6
|
-
----------
|
7
|
-
message : str
|
8
|
-
The response message associated with the exception.
|
9
|
-
|
10
|
-
Attributes
|
11
|
-
----------
|
12
|
-
message : str
|
13
|
-
Stores the response message passed during initialization.
|
14
|
-
|
15
|
-
Methods
|
16
|
-
-------
|
17
|
-
__str__()
|
18
|
-
Returns a string representation of the exception, including the response message.
|
19
|
-
"""
|
20
|
-
|
21
|
-
def __init__(self, message: str):
|
22
|
-
"""
|
23
|
-
Initializes the CLIOrionisValueError with the given response message.
|
24
|
-
|
25
|
-
Parameters
|
26
|
-
----------
|
27
|
-
message : str
|
28
|
-
The response message associated with the exception.
|
29
|
-
"""
|
30
|
-
super().__init__(message)
|
31
|
-
|
32
|
-
def __str__(self):
|
33
|
-
"""
|
34
|
-
Returns a string representation of the exception, including the response message.
|
35
|
-
|
36
|
-
Returns
|
37
|
-
-------
|
38
|
-
str
|
39
|
-
A string containing the exception name and the response message.
|
40
|
-
"""
|
41
|
-
return f"CLIOrionisValueError: {self.args[0]}"
|
@@ -1,41 +0,0 @@
|
|
1
|
-
class CLIOrionisRuntimeError(RuntimeError):
|
2
|
-
"""
|
3
|
-
Custom exception raised when there is a runtime issue with Orionis processing.
|
4
|
-
|
5
|
-
Parameters
|
6
|
-
----------
|
7
|
-
message : str
|
8
|
-
The response message associated with the exception.
|
9
|
-
|
10
|
-
Attributes
|
11
|
-
----------
|
12
|
-
message : str
|
13
|
-
Stores the response message passed during initialization.
|
14
|
-
|
15
|
-
Methods
|
16
|
-
-------
|
17
|
-
__str__()
|
18
|
-
Returns a string representation of the exception, including the response message.
|
19
|
-
"""
|
20
|
-
|
21
|
-
def __init__(self, message: str):
|
22
|
-
"""
|
23
|
-
Initializes the CLIOrionisRuntimeError with the given response message.
|
24
|
-
|
25
|
-
Parameters
|
26
|
-
----------
|
27
|
-
message : str
|
28
|
-
The response message associated with the exception.
|
29
|
-
"""
|
30
|
-
super().__init__(message)
|
31
|
-
|
32
|
-
def __str__(self):
|
33
|
-
"""
|
34
|
-
Returns a string representation of the exception, including the response message.
|
35
|
-
|
36
|
-
Returns
|
37
|
-
-------
|
38
|
-
str
|
39
|
-
A string containing the exception name and the response message.
|
40
|
-
"""
|
41
|
-
return f"CLIOrionisRuntimeError: {self.args[0]}"
|
@@ -1,41 +0,0 @@
|
|
1
|
-
class CLIOrionisScheduleException(Exception):
|
2
|
-
"""
|
3
|
-
Custom exception raised when there is an issue with the Orionis schedule.
|
4
|
-
|
5
|
-
Parameters
|
6
|
-
----------
|
7
|
-
message : str
|
8
|
-
The response message associated with the exception.
|
9
|
-
|
10
|
-
Attributes
|
11
|
-
----------
|
12
|
-
message : str
|
13
|
-
Stores the response message passed during initialization.
|
14
|
-
|
15
|
-
Methods
|
16
|
-
-------
|
17
|
-
__str__()
|
18
|
-
Returns a string representation of the exception, including the response message.
|
19
|
-
"""
|
20
|
-
|
21
|
-
def __init__(self, message: str):
|
22
|
-
"""
|
23
|
-
Initializes the CLIOrionisScheduleException with the given response message.
|
24
|
-
|
25
|
-
Parameters
|
26
|
-
----------
|
27
|
-
message : str
|
28
|
-
The response message associated with the exception.
|
29
|
-
"""
|
30
|
-
super().__init__(message)
|
31
|
-
|
32
|
-
def __str__(self):
|
33
|
-
"""
|
34
|
-
Returns a string representation of the exception, including the response message.
|
35
|
-
|
36
|
-
Returns
|
37
|
-
-------
|
38
|
-
str
|
39
|
-
A string containing the exception name and the response message.
|
40
|
-
"""
|
41
|
-
return f"CLIOrionisScheduleException: {self.args[0]}"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|