| 39 | |
| 40 | |
| 41 | class ExceptionIncorrectWidthAndHeight(_Exception): |
| 42 | |
| 43 | def __str__(self): |
| 44 | return "Input incorrect width width and height. Minimum width = :{imgW} . Minimum height = :{imgH}".format( |
| 45 | imgW=self.imgW, imgH=self.imgH) |
| 46 | |
| 47 | |
| 48 | class ExceptionIncorrectHeight(_Exception): |