All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.axway.iron.error.MalformedCommandException Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package io.axway.iron.error;

import java.util.function.*;
import io.axway.alf.Arguments;

public class MalformedCommandException extends StoreException {
    public MalformedCommandException() {
    }

    public MalformedCommandException(Throwable cause) {
        super(cause);
    }

    public MalformedCommandException(String message) {
        super(message);
    }

    public MalformedCommandException(String message, Throwable cause) {
        super(message, cause);
    }

    public MalformedCommandException(String message, Consumer args) {
        super(message, args);
    }

    public MalformedCommandException(String message, Consumer args, Throwable cause) {
        super(message, args, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy