
org.jboss.weld.logging.SerializationLogger_$logger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-se-shaded Show documentation
Show all versions of weld-se-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for Java SE.
package org.jboss.weld.logging;
import java.io.Serializable;
import javax.annotation.Generated;
import org.jboss.logging.BasicLogger;
import org.jboss.logging.DelegatingBasicLogger;
import org.jboss.logging.Logger;
/**
* Warning this class consists of generated code.
*
*/
@Generated(value = "org.jboss.logging.processor.generator.model.MessageLoggerImplementor", date = "2016-09-13T11:41:24+0200")
public class SerializationLogger_$logger
extends DelegatingBasicLogger
implements Serializable, BasicLogger, SerializationLogger, WeldLogger
{
private final static long serialVersionUID = 1L;
private final static java.lang.String FQCN = SerializationLogger_$logger.class.getName();
private final static java.lang.String unableToGetBeanIdentifier = "WELD-001800: Unable to get bean identifier at position {0} from {1}";
private final static java.lang.String unableToDeserialize = "WELD-001801: Unable to deserialize {0}";
private final static java.lang.String catchingDebug = "Catching";
public SerializationLogger_$logger(final Logger log) {
super(log);
}
public final org.jboss.weld.exceptions.IllegalStateException unableToGetBeanIdentifier(final int index, final java.lang.Object info) {
org.jboss.weld.exceptions.IllegalStateException result = new org.jboss.weld.exceptions.IllegalStateException(java.text.MessageFormat.format(unableToGetBeanIdentifier$str(), index, info));
java.lang.StackTraceElement[] st = result.getStackTrace();
result.setStackTrace(java.util.Arrays.copyOfRange(st, 1, st.length));
return result;
}
protected java.lang.String unableToGetBeanIdentifier$str() {
return unableToGetBeanIdentifier;
}
public final org.jboss.weld.exceptions.InvalidObjectException unableToDeserialize(final java.lang.Object info, final java.lang.Throwable cause) {
org.jboss.weld.exceptions.InvalidObjectException result = new org.jboss.weld.exceptions.InvalidObjectException(java.text.MessageFormat.format(unableToDeserialize$str(), info));
result.initCause(cause);
java.lang.StackTraceElement[] st = result.getStackTrace();
result.setStackTrace(java.util.Arrays.copyOfRange(st, 1, st.length));
return result;
}
protected java.lang.String unableToDeserialize$str() {
return unableToDeserialize;
}
public final void catchingDebug(final java.lang.Throwable throwable) {
super.log.logf(FQCN, (org.jboss.logging.Logger.Level.DEBUG), (throwable), catchingDebug$str());
}
protected java.lang.String catchingDebug$str() {
return catchingDebug;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy