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

com.bbn.parliament.ontology_bundle.CommandLineException Maven / Gradle / Ivy

Go to download

A Gradle plugin to package (or bundle) an OWL ontology in a jar to make it easy to use in Java-based software projects. Copyright © 2023, 2024 RTX BBN Technologies

There is a newer version: 1.0.3
Show newest version
// Parliament is licensed under the BSD License from the Open Source
// Initiative, http://www.opensource.org/licenses/bsd-license.php
//
// Copyright (c) 2023, BBN Technologies, Inc.
// All rights reserved.

package com.bbn.parliament.ontology_bundle;

class CommandLineException extends Exception {
	private static final long serialVersionUID = 1L;

	public CommandLineException() {
	}

	public CommandLineException(String format, Object... args) {
		super(String.format(format, args));
	}

	public CommandLineException(Throwable cause, String format, Object... args) {
		super(String.format(format, args), cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy