Skip to content
Snippets Groups Projects

Fluxio preliminary release

Merged Moritz Gleissner requested to merge fluxio/dev into master
2 files
+ 9
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -60,6 +60,12 @@ namespace armarx::skills::error
return formatString("This is a test Error with Argument: '%s'", args);
case ErrorCode::ProviderAlreadyExists:
return formatString("Provider with ID '%s' already exists.", args);
case ErrorCode::ProfileHasNoParent:
return formatString("Profile with name: '%s' could not be added because it has no "
"Parent Profile assigned.",
args);
case ErrorCode::ProfileAlreadyExists:
return formatString("Profile with name: '%s' already exists.", args);
default:
return "Unknown error.";
}
Loading