104 lines
2.7 KiB
Java
Raw Normal View History

2017-03-19 11:54:29 +01:00
/*
* Copyright 2017 Volker Berlin (i-net software)
*
* 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 de.inetsoftware.jwebassembly;
/**
* If there any error occur on converting a class file to a WebAssembly module.
*
* @author Volker Berlin
*
*/
2017-03-20 17:47:06 +01:00
public class WasmException extends Exception {
2017-03-19 11:54:29 +01:00
2017-03-21 17:35:06 +01:00
private int lineNumber;
2017-03-19 22:05:16 +01:00
/**
* Create a new instance.
*
* @param message
* the error message
* @param lineNumber
* the line number in Java Code
*/
2017-03-20 17:47:06 +01:00
public WasmException( String message, int lineNumber ) {
2017-03-19 22:05:16 +01:00
super( message );
this.lineNumber = lineNumber;
}
2017-03-19 18:06:53 +01:00
/**
* Create a new instance with a cause.
*
* @param cause
* the cause
*/
2017-03-21 17:35:06 +01:00
private WasmException( Throwable cause ) {
2017-03-19 18:06:53 +01:00
super( cause );
2017-03-19 22:05:16 +01:00
lineNumber = -1;
2017-03-19 18:06:53 +01:00
}
2017-03-21 17:35:06 +01:00
/**
* Create a wrapped exception needed.
*
* @param cause
* the wrapped cause
* @param lineNumber
* the line number in Java Code
* @return a new instance
*/
public static WasmException create( Throwable cause, int lineNumber ) {
WasmException wasmEx = create( cause );
if( wasmEx.lineNumber < 0 ) {
wasmEx.lineNumber = lineNumber;
}
return wasmEx;
}
2017-03-19 18:06:53 +01:00
/**
* Create a wrapped exception needed.
*
* @param cause
* the wrapped cause
* @return a new instance
*/
2017-03-20 17:47:06 +01:00
public static WasmException create( Throwable cause ) {
if( cause instanceof WasmException ) {
return (WasmException)cause;
2017-03-19 18:06:53 +01:00
}
2017-03-20 17:47:06 +01:00
return new WasmException( cause );
2017-03-19 18:06:53 +01:00
}
2017-03-19 22:05:16 +01:00
/**
* Get the line number in Java code on which the error occurred.
*
* @return the line number or -1
*/
public int getLineNumber() {
return lineNumber;
}
2017-03-21 18:19:23 +01:00
/**
* {@inheritDoc}
*/
@Override
public String toString() {
String str = super.toString();
if( lineNumber > 0 ) {
str += " at line: " + lineNumber;
}
return str;
}
2017-03-19 11:54:29 +01:00
}