[#absl-AlreadyExistsError-02] = xref:absl.adoc[absl]::AlreadyExistsError :relfileprefix: ../ :mrdocs: Creates a status with the `kAlreadyExists` error code and `message`. == Synopsis Declared in `<absl/status/status.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename String, typename = /* implementation-defined */::EnableIfString<String>> xref:absl/Status.adoc[Status] AlreadyExistsError( String&& message, xref:absl/SourceLocation.adoc[absl::SourceLocation] loc = SourceLocation::current()); ---- == Return Value A status with the `kAlreadyExists` error code. == Parameters [cols="1,4"] |=== | Name| Description | *message* | The error message. | *loc* | The source location of the callsite. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#