Back to project page mobile2-android.
The source code is released under:
Apache License
If you think the Android project mobile2-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ecollege.android.errors; //from w ww . j a v a 2 s . co m import android.content.Context; @SuppressWarnings("serial") public class ECollegeAlertException extends ECollegeException { public ECollegeAlertException(Context ctx, int errorMessageId, Throwable source) { super(ctx, errorMessageId, source); } public ECollegeAlertException(Context ctx, int errorMessageId) { super(ctx, errorMessageId); } public ECollegeAlertException(Context ctx, Throwable source) { super(ctx, source); } }