com.caoccao.javet.entities.JavetEntityError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javet-linux-arm64 Show documentation
Show all versions of javet-linux-arm64 Show documentation
Javet is Java + V8 (JAVa + V + EighT). It is an awesome way of embedding Node.js and V8 in Java.
/*
* Copyright (c) 2024. caoccao.com Sam Cao
*
* 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 com.caoccao.javet.entities;
import com.caoccao.javet.enums.V8ValueErrorType;
import com.caoccao.javet.interfaces.IJavetEntityError;
import java.util.HashMap;
import java.util.Map;
/**
* The type Javet entity error.
*
* @since 3.0.4
*/
public class JavetEntityError implements IJavetEntityError {
/**
* The Context.
*
* @since 3.0.4
*/
protected final Map context;
/**
* The Detailed message.
*
* @since 3.0.4
*/
protected String detailedMessage;
/**
* The Message.
*
* @since 3.0.4
*/
protected String message;
/**
* The Stack.
*
* @since 3.0.4
*/
protected String stack;
/**
* The Type.
*/
protected V8ValueErrorType type;
/**
* Instantiates a new Javet entity error.
*
* @param type the type
* @param message the message
* @param detailedMessage the detailed message
* @param stack the stack
* @since 3.0.4
*/
public JavetEntityError(V8ValueErrorType type, String message, String detailedMessage, String stack) {
context = new HashMap<>();
this.detailedMessage = detailedMessage;
this.message = message;
this.stack = stack;
this.type = type;
}
@Override
public Map getContext() {
return context;
}
@Override
public String getDetailedMessage() {
return detailedMessage;
}
@Override
public String getMessage() {
return message;
}
@Override
public String getStack() {
return stack;
}
@Override
public V8ValueErrorType getType() {
return type;
}
@Override
public void setDetailedMessage(String detailedMessage) {
this.detailedMessage = detailedMessage;
}
@Override
public void setMessage(String message) {
this.message = message;
}
@Override
public void setStack(String stack) {
this.stack = stack;
}
@Override
public void setType(V8ValueErrorType type) {
this.type = type;
}
}