org.auraframework.throwable.SystemErrorException.java Source code

Java tutorial

Introduction

Here is the source code for org.auraframework.throwable.SystemErrorException.java

Source

/*
 * Copyright (C) 2013 salesforce.com, inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.auraframework.throwable;

import java.util.Map;

import org.apache.http.HttpStatus;
import org.auraframework.Aura;
import org.auraframework.def.EventDef;
import org.auraframework.instance.Event;
import org.auraframework.throwable.quickfix.QuickFixException;
import org.auraframework.util.json.JsFunction;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.Maps;

public class SystemErrorException extends ClientSideEventException {
    private static final long serialVersionUID = -2007734227131769994L;

    public SystemErrorException(Throwable cause) {
        this(cause.getMessage(), cause);
    }

    public SystemErrorException(String message) {
        super(message);
    }

    public SystemErrorException(String message, Throwable cause) {
        super(message, cause);
    }

    @Override
    public Event getEvent() {
        try {
            Map<String, Object> args = Maps.newHashMapWithExpectedSize(1);
            args.put("message", this.getMessage());
            return Aura.getInstanceService().getInstance("aura:systemError", EventDef.class, args);
        } catch (QuickFixException x) {
            throw new AuraRuntimeException(x);
        }
    }

    @Override
    public JsFunction getDefaultHandler() {
        return new JsFunction(ImmutableList.<String>of(), "throw new $A.auraError('unknown error');");
    }

    @Override
    public int getStatusCode() {
        return HttpStatus.SC_NOT_FOUND;
    }
}