exceptions#

Module: fridom.framework.exceptions

Exceptions

TooManyArgumentsError(max_args, **provided_args)

Raise when too many arguments are provided.

exceptions.py - Custom exceptions for the framework.

exception fridom.framework.exceptions.TooManyArgumentsError(max_args: int, **provided_args: any)[source]#

Bases: Exception

Raise when too many arguments are provided.

static check(max_args: int, **provided_args: any) None[source]#

Check if the number of provided arguments is correct.