aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/java/org/wordpress/android/ui/stats/exceptions/StatsError.java
blob: 8784ff95f0cedb556b36f352094317cf1d043efa (plain)
1
2
3
4
5
6
7
8
9
package org.wordpress.android.ui.stats.exceptions;

import java.io.Serializable;

public class StatsError extends Exception implements Serializable {
    public StatsError(String errorMessage) {
        super(errorMessage);
    }
}