// 
// Decompiled by Procyon v0.6.0
// 

package io.sentry.vendor.gson.stream;

import org.jetbrains.annotations.ApiStatus;
import java.io.IOException;

@ApiStatus.Internal
public final class MalformedJsonException extends IOException
{
    private static final long serialVersionUID = 1L;
    
    public MalformedJsonException(final String msg) {
        super(msg);
    }
    
    public MalformedJsonException(final String msg, final Throwable throwable) {
        super(msg);
        this.initCause(throwable);
    }
    
    public MalformedJsonException(final Throwable throwable) {
        this.initCause(throwable);
    }
}
