exceptions

Exception classes.

Exceptions

EnvironmentError

Raisd when there are issued with dependencies/environment/etc.

Error

Base class for all exceptions.

InvalidFileType

Raised when a file is not of the expected type.

PathDoesNotExist

A requested path does not exist when it should.

PathError

Errors with paths.

PathExists

A requested already exists when it should not.

SchemaError

Errors with schema validation.

exception undertale.exceptions.Error

Bases: Exception

Base class for all exceptions.

exception undertale.exceptions.EnvironmentError

Bases: Error

Raisd when there are issued with dependencies/environment/etc.

exception undertale.exceptions.PathError

Bases: Error

Errors with paths.

exception undertale.exceptions.PathDoesNotExist

Bases: PathError

A requested path does not exist when it should.

exception undertale.exceptions.PathExists

Bases: PathError

A requested already exists when it should not.

exception undertale.exceptions.SchemaError

Bases: Error

Errors with schema validation.