okw.exceptions.OKWFrameObjectParentNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
This is the core-module of OpenKeyWord. This module is automatically integrated by the adapters. In GUI automation, the core module is automatically integrated by the GUI modules (dependencies).
The newest version!
/*
==============================================================================
Author: Zoltán Hrabovszki
Copyright © 2012 - 2020, IT-Beratung Hrabovszki
www.OpenKeyWord.de
==============================================================================
This file is part of OpenKeyWord.
OpenKeyWord is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenKeyWord is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OpenKeyWord. If not, see .
Diese Datei ist Teil von OpenKeyWord.
OpenKeyWord ist Freie Software: Sie können es unter den Bedingungen
der GNU General Public License, wie von der Free Software Foundation,
Version 3 der Lizenz oder (nach Ihrer Wahl) jeder späteren
veröffentlichten Version, weiterverbreiten und/oder modifizieren.
OpenKeyWord wird in der Hoffnung, dass es nützlich sein wird, aber
OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
Siehe die GNU General Public License für weitere Details.
Sie sollten eine Kopie der GNU General Public License zusammen mit
OpenKeyWord erhalten haben. Wenn nicht, siehe .
*/
package okw.exceptions;
/// \~german
/// \brief Die Ausnahme OKWFrameObjectWindowNotFoundException
wird ausgelöst,
/// wenn ein Fenster-Frame-Objekt mit dem gegebenen Namen __nicht__ gefunden wird.
/// \details
/// Typische Gründe für das Auslösen dieser Ausnahmebehandlung sind:
/// -# Falschgeschriebener/vertippter fachlicher Bezeichner im Schlüsselwort.
/// -# Der Frame eines Objektes wurde _nicht_ definiert oder mit use
eingebunden.
///
/// \~english
/// \brief The exception OKWFrameObjectWindowNotFoundException
is triggered,
/// if a window-frame-object is __not__ found with the given name.
/// \details
/// Typical reasons for triggering are:
/// -# wrongly written professional identifiers in the key word.
/// -# the frame of an object was _not_ defined or integrated with use
.
///
/// \~
/// \author Zoltán Hrabovszki
/// \date 2014.04.27/ jnic_2014_11_27
public class OKWFrameObjectParentNotFoundException extends RuntimeException
{
private static final long serialVersionUID = 5821431817030614044L;
public OKWFrameObjectParentNotFoundException()
{
super();
}
public OKWFrameObjectParentNotFoundException(String message)
{
super(message);
}
}