package com.google.android.daca.exceptions;
/**
* Exception that is thrown if a participant ID is not returned by the server.
*
* @author epetkov
*/
public class ParticipantIDNotReturnedException extends Exception
{
private static final long serialVersionUID = 143252L;
public ParticipantIDNotReturnedException(String message)
{
super(message);
}
public ParticipantIDNotReturnedException(String message, Throwable cause)
{
super(message, cause);
}
}
|