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

package org.bouncycastle.util;

import java.io.IOException;

public class Exceptions
{
    public static IllegalArgumentException illegalArgumentException(final String message, final Throwable cause) {
        return new IllegalArgumentException(message, cause);
    }
    
    public static IllegalStateException illegalStateException(final String message, final Throwable cause) {
        return new IllegalStateException(message, cause);
    }
    
    public static IOException ioException(final String message, final Throwable cause) {
        return new IOException(message, cause);
    }
}
