com.bbn.parliament.ontology_bundle.CommandLineException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OntologyBundle Show documentation
Show all versions of OntologyBundle Show documentation
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
// 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);
}
}