The version of Apache log4j used by SoundHelix.

[[ 🗃 ^aEp6o apache-log4j ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Commits]

Clone

HTTPS: git clone https://vervis.peers.community/repos/aEp6o

SSH: git clone USERNAME@vervis.peers.community:aEp6o

Branches

Tags

v1.3alpha8 :: src / java / org / apache / log4j / lbel /

ScanError.java

package org.apache.log4j.lbel;

public class ScanError extends Exception {
  
  Throwable cause;
  
  public ScanError(String msg) {
    super(msg);
  }

  public ScanError(String msg, Throwable rootCause) {
    super(msg);
    this.cause = rootCause;
  }

  public Throwable getCause() {
   return cause;
  }
}

[See repo JSON]