001package org.intellimate.izou.sdk.frameworks.music.resources; 002 003import org.intellimate.izou.identification.Identification; 004import org.intellimate.izou.sdk.resource.Resource; 005 006/** 007 * this class is used to hold the error-message 008 * @author LeanderK 009 * @version 1.0 010 */ 011public class MusicErrorResource extends Resource<String> { 012 public static final String ID = "izou.music.resource.error"; 013 014 /** 015 * creates a new Resource. 016 * This method is thread-safe. 017 * 018 * @param provider the Provider of the Resource 019 * @param error the error 020 */ 021 public MusicErrorResource(Identification provider, String error) { 022 super(ID, provider, error); 023 } 024}