C# Class Org.IdentityConnectors.Framework.Common.Exceptions.AlreadyExistsException

AlreadyExistsException is thrown to indicate if Org.IdentityConnectors.Framework.Api.Operations.CreateApiOp attempts to create an object that exists prior to the method execution or Org.IdentityConnectors.Framework.Api.Operations.UpdateApiOp attempts to rename an object to that exists prior to the method execution.
Inheritance: ConnectorException
Show file Open project: Tirasa/ConnId Class Usage Examples

Public Methods

Method Description
AlreadyExistsException ( ) : System
AlreadyExistsException ( Exception ex ) : System
AlreadyExistsException ( string message ) : System
AlreadyExistsException ( string message, Exception ex ) : System
InitUid ( Uid uid ) : AlreadyExistsException

Sets the Uid of existing Object. Connectors who throw this exception from their org.identityconnectors.framework.spi.operations.CreateOp or org.identityconnectors.framework.spi.operations.UpdateOp should set the object's Uid if available.

Method Details

AlreadyExistsException() public method

public AlreadyExistsException ( ) : System
return System

AlreadyExistsException() public method

public AlreadyExistsException ( Exception ex ) : System
ex System.Exception
return System

AlreadyExistsException() public method

public AlreadyExistsException ( string message ) : System
message string
return System

AlreadyExistsException() public method

public AlreadyExistsException ( string message, Exception ex ) : System
message string
ex System.Exception
return System

InitUid() public method

Sets the Uid of existing Object. Connectors who throw this exception from their org.identityconnectors.framework.spi.operations.CreateOp or org.identityconnectors.framework.spi.operations.UpdateOp should set the object's Uid if available.
public InitUid ( Uid uid ) : AlreadyExistsException
uid Org.IdentityConnectors.Framework.Common.Objects.Uid /// The uid.
return AlreadyExistsException