summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripting/Jar_ScriptFramework.mk1
-rw-r--r--scripting/java/com/sun/star/script/framework/provider/NoSuitableClassLoaderException.java42
2 files changed, 0 insertions, 43 deletions
diff --git a/scripting/Jar_ScriptFramework.mk b/scripting/Jar_ScriptFramework.mk
index fe728a2d3e57..9bf31b62cb64 100644
--- a/scripting/Jar_ScriptFramework.mk
+++ b/scripting/Jar_ScriptFramework.mk
@@ -46,7 +46,6 @@ $(eval $(call gb_Jar_add_sourcefiles,ScriptFramework,\
scripting/java/com/sun/star/script/framework/log/LogUtils \
scripting/java/com/sun/star/script/framework/provider/ClassLoaderFactory \
scripting/java/com/sun/star/script/framework/provider/EditorScriptContext \
- scripting/java/com/sun/star/script/framework/provider/NoSuitableClassLoaderException \
scripting/java/com/sun/star/script/framework/provider/PathUtils \
scripting/java/com/sun/star/script/framework/provider/ScriptContext \
scripting/java/com/sun/star/script/framework/provider/ScriptEditor \
diff --git a/scripting/java/com/sun/star/script/framework/provider/NoSuitableClassLoaderException.java b/scripting/java/com/sun/star/script/framework/provider/NoSuitableClassLoaderException.java
deleted file mode 100644
index a2b0c6b1d7cb..000000000000
--- a/scripting/java/com/sun/star/script/framework/provider/NoSuitableClassLoaderException.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-package com.sun.star.script.framework.provider;
-
-public class NoSuitableClassLoaderException extends Exception {
-
- /**
- * Constructs an <code>NoSuitableClassLoaderException</code> with <code>null</code>
- * as its error detail message.
- */
- public NoSuitableClassLoaderException() {
- super();
- }
-
- /**
- * Constructs an <code>NoSuitBaleClassLoaderException</code> with the specified detail
- * message. The error message string <code>s</code> can later be
- * retrieved by the <code>{@link java.lang.Throwable#getMessage}</code>
- * method of class <code>java.lang.Throwable</code>.
- *
- * @param s the detail message.
- */
- public NoSuitableClassLoaderException(String s) {
- super(s);
- }
-} \ No newline at end of file