export class ImageTypeError extends Error {

    constructor(){
        
        super();
        this.message = "Image type is not accept."
    }    

}