package com.mobify.astro.utilities;

import android.net.Uri;

public class Exceptions {
    private Exceptions() {}

    public static class UnsupportedUriSchemeException extends Exception {
        public UnsupportedUriSchemeException(Uri uri) {
            super("Scheme " + uri.getScheme() + " is not supported. Requested: " + uri.toString());
        }
    }
}
