blob: 7566606d50131b272f91e42fbcc1d1efb6e30a44 [file]
package io.prediction;
/**
* Unidentified User Exception
*
* @author The PredictionIO Team (<a href="http://prediction.io">http://prediction.io</a>)
* @version 0.4.3
* @since 0.4.3
*/
public class UnidentifiedUserException extends Exception {
public UnidentifiedUserException(String message) {
super(message);
}
}