Skip to content

Commit

Permalink
Merge pull request #245 from kaneeldias/improve
Browse files Browse the repository at this point in the history
  • Loading branch information
kaneeldias authored Jul 18, 2023
2 parents 1a5d94d + fe83294 commit b6791bc
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 2 deletions.
2 changes: 0 additions & 2 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
ignore:
- "ballerina/googlesheets_client.bal"
coverage:
precision: 2
round: down
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* Copyright (c) 2023, WSO2 LLC. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 LLC. 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package io.ballerina.stdlib.persist;

import io.ballerina.runtime.api.creators.ErrorCreator;
import io.ballerina.runtime.api.utils.StringUtils;
import io.ballerina.runtime.api.values.BError;
import io.ballerina.runtime.api.values.BMap;
import io.ballerina.runtime.api.values.BString;

import static io.ballerina.stdlib.persist.Constants.ERROR;
import static io.ballerina.stdlib.persist.ModuleUtils.getModule;

/**
* This class provides the error generator methods for persistence.
*
* @since 1.1.0
*/
public class ErrorGenerator {

private ErrorGenerator() {
}

private static BError generatePersistError(BString message, BError cause, BMap<BString, Object> details) {
return ErrorCreator.createError(getModule(), ERROR, message, cause, details);
}

public static BError getBasicPersistError(String message) {
return generatePersistError(StringUtils.fromString(message), null, null);
}

public static BError wrapError(BError error) {
return generatePersistError(error.getErrorMessage(), error.getCause(), null);
}
}

0 comments on commit b6791bc

Please sign in to comment.