package com.google.zxing;

public final class FormatException extends ReaderException
{
  private static final FormatException INSTANCE = new FormatException();

  static
  {
    INSTANCE.setStackTrace(NO_TRACE);
  }

  private FormatException()
  {
  }

  private FormatException(Throwable paramThrowable)
  {
    super(paramThrowable);
  }

  public static FormatException getFormatInstance()
  {
    if (isStackTrace)
      return new FormatException();
    return INSTANCE;
  }

  public static FormatException getFormatInstance(Throwable paramThrowable)
  {
    if (isStackTrace)
      return new FormatException(paramThrowable);
    return INSTANCE;
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.google.zxing.FormatException
 * JD-Core Version:    0.6.2
 */