SlingRepositoryException.java 634 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.jcr.RepositoryException
 *  org.apache.sling.api.SlingException
 */
package com.day.cq.commons;

import javax.jcr.RepositoryException;
import org.apache.sling.api.SlingException;

public class SlingRepositoryException
extends SlingException {
    private static final long serialVersionUID = -640951864189570350L;

    public SlingRepositoryException(RepositoryException cause) {
        super((Throwable)cause);
    }

    public SlingRepositoryException(String text, RepositoryException cause) {
        super(text, (Throwable)cause);
    }
}