Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
package org.apache.sqoop.common; /** * Defines an error-code contract. Sqoop exceptions use the error code to * communicate error information where possible. Each error code is associated * with default message that identifies the high level information related to * the underlying error condition. */ public interface ErrorCode { /** * @return the string representation of the error code. */ String getCode(); /** * @return the message associated with error code. */ String getMessage(); }
to
package org.apache.sqoop.common; /** * Defines an error-code contract. Sqoop exceptions use the error code to * communicate error information where possible. Each error code is associated * with default message that identifies the high level information related to * the underlying error condition. */ public abstract class ErrorCode { /** * @return the string representation of the error code. */ String getCode() { } /** * @return the message associated with error code. */ String getMessage() { } }
Attachments
Issue Links
- is a clone of
-
SQOOP-1557 Sqoop2: SQ_CONFIGURABLE ( for entities who own configs)
- Resolved
- is cloned by
-
SQOOP-1597 Sqoop2: Refactor DerbySchemaQuery into one for create/ update/ and then CRUD operarations
- Resolved