Had fight with maven. It decided to block HTTP repositories.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / htmlindexer / ImageFormatError.java
1 /*
2  * Meviz - Various tools collection to work with multimedia. Author: Svjatoslav Agejenko.
3  * This project is released under Creative Commons Zero (CC0) license.
4  */
5
6
7 package eu.svjatoslav.meviz.htmlindexer;
8
9 public class ImageFormatError extends Exception {
10
11     private static final long serialVersionUID = 4037233564457071385L;
12
13     public ImageFormatError(final String message) {
14         super(message);
15     }
16 }