29package com.jogamp.gluegen;
31import com.jogamp.common.JogampRuntimeException;
36@SuppressWarnings(
"serial")
58 super(message, cause);
73 this.locus = locusTag;
79 super(message, cause);
80 this.locus = locusTag;
84 final StringBuilder sb =
new StringBuilder(256);
86 locus.
toString(sb,
"error",
true).append(
": ");
88 sb.append(getClass().getSimpleName()).append(
": ").append(getLocalizedMessage());
A generic unchecked exception for Jogamp errors used throughout the binding as a substitute for Runti...
A generic exception for Jogamp errors used throughout the binding as a substitute for RuntimeExceptio...
GlueGenException(final Throwable cause)
Constructs a GlueGenException object with the specified root cause.
ASTLocusTag getASTLocusTag()
GlueGenException()
Constructs a GlueGenException object.
GlueGenException(final String message, final ASTLocusTag locusTag)
Constructs a GlueGenException object with the specified detail message and root cause.
GlueGenException(final String message, final ASTLocusTag locusTag, final Throwable cause)
Constructs a GlueGenException object with the specified detail message and root cause.
GlueGenException(final String message)
Constructs a GlueGenException object with the specified detail message.
GlueGenException(final String message, final Throwable cause)
Constructs a GlueGenException object with the specified detail message and root cause.