com.mpatric.mp3agic.NotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mp3agic Show documentation
Show all versions of mp3agic Show documentation
A java library for reading mp3 files and manipulating mp3 file ID3 tags (ID3v1 and ID3v2.2 to ID3v2.4).
package com.mpatric.mp3agic;
public class NotSupportedException extends BaseException {
private static final long serialVersionUID = 1L;
public NotSupportedException() {
super();
}
public NotSupportedException(String message) {
super(message);
}
public NotSupportedException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy