ParticipantIDNotReturnedException.java :  » Client » daca » com » google » android » daca » exceptions » Android Open Source

Android Open Source » Client » daca 
daca » com » google » android » daca » exceptions » ParticipantIDNotReturnedException.java

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);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.