-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marco Boeck
committed
May 8, 2018
1 parent
90f3607
commit 04cee57
Showing
338 changed files
with
12,258 additions
and
4,922 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version=8.1.0 | ||
version=8.2.0 | ||
group=com.rapidminer.studio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/** | ||
* Copyright (C) 2001-2018 by RapidMiner and the contributors | ||
* | ||
* Complete list of developers available at our web site: | ||
* | ||
* http://rapidminer.com | ||
* | ||
* This program is free software: you can redistribute it and/or modify it under the terms of the | ||
* GNU Affero General Public License as published by the Free Software Foundation, either version 3 | ||
* of the License, or (at your option) any later version. | ||
* | ||
* This program 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 | ||
* Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License along with this program. | ||
* If not, see http://www.gnu.org/licenses/. | ||
*/ | ||
|
||
package com.rapidminer.example; | ||
|
||
import java.io.Serializable; | ||
|
||
import com.rapidminer.operator.OperatorException; | ||
import com.rapidminer.operator.UserError; | ||
|
||
|
||
/** | ||
* POJO to capture the information on an attribute related runtime exception. Can create an {@link OperatorException} | ||
* from the captured information. | ||
* | ||
* @author Jan Czogalla | ||
* @since 8.2 | ||
*/ | ||
class AttributeError implements Serializable { | ||
|
||
String baseKey; | ||
String name; | ||
boolean isRole; | ||
boolean isUserError; | ||
|
||
/** | ||
* Creates an {@link OperatorException} and associated the specified stacktrace with it. Can differentiate between | ||
* {@link UserError} and {@link OperatorException}. | ||
* | ||
* @param stackTrace | ||
* the stacktrace to be attached to the returned excpetion | ||
* @return an operator exception or user error | ||
*/ | ||
OperatorException toOperatorException(StackTraceElement[] stackTrace) { | ||
String actualKey = baseKey + (isRole ? "_role" : ""); | ||
OperatorException exception; | ||
if (isUserError) { | ||
exception = new UserError(null, actualKey, name); | ||
} else { | ||
exception = new OperatorException(actualKey, null, name); | ||
} | ||
exception.setStackTrace(stackTrace); | ||
return exception; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.