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

com.playlyfe.sdk.PlaylyfeException Maven / Gradle / Ivy

package com.playlyfe.sdk;

public class PlaylyfeException extends Exception {
	private String name;
	
	 public PlaylyfeException(String name, String message) {
        super(message);
        this.name = name;
     }
	 
	 public String getName() {
		 return name;
	 }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy