| 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); | |
| } | |
| } |