package com.mobify.astro;

/**
 * The exception that is thrown from any Astro component (plugin or core class) that
 * is meant to be handled on the JavaScript side of Astro. Any error conditions that
 * can't be handled by app.js should not inherit from this class.
 */
public abstract class AstroException extends Exception {
    public AstroException(String message) {
        super(message);
    }
}
