ru.olegcherednik.icoman.exceptions.FormatNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icon-manager Show documentation
Show all versions of icon-manager Show documentation
Icon Manager (ico, icl, icns).
The newest version!
package ru.olegcherednik.icoman.exceptions;
/**
* @author Oleg Cherednik
* @since 26.07.2015
*/
public class FormatNotSupportedException extends IconManagerException {
private static final long serialVersionUID = 5289183736564114818L;
public FormatNotSupportedException(String message) {
super(message);
}
}