ru.olegcherednik.icoman.exceptions.ImageKeyNotSupportedException 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 16.08.2015
*/
public class ImageKeyNotSupportedException extends IconManagerException {
private static final long serialVersionUID = -6932141332945046977L;
public ImageKeyNotSupportedException(String type) {
super(String.format("Image key '%s' is not supported", type));
}
}