export class DatabaseError extends Error {
    public constructor(text: string) {

        super(text);

    }
}