NoSuchPropertyException.java 668 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service;

import com.adobe.service.NoSuchPropertyExceptionHelper;
import org.omg.CORBA.UserException;

public final class NoSuchPropertyException
extends UserException {
    public String reason = "";

    public NoSuchPropertyException() {
        super(NoSuchPropertyExceptionHelper.id());
    }

    public NoSuchPropertyException(String _reason, String reason) {
        super(NoSuchPropertyExceptionHelper.id() + " " + _reason);
        this.reason = reason;
    }

    public NoSuchPropertyException(String reason) {
        super(NoSuchPropertyExceptionHelper.id());
        this.reason = reason;
    }
}