All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mpatric.mp3agic.NotSupportedException Maven / Gradle / Ivy

Go to download

A java library for reading mp3 files and manipulating mp3 file ID3 tags (ID3v1 and ID3v2.2 to ID3v2.4).

There is a newer version: 0.9.1
Show newest version
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