[#absl-UnknownError-0e] = xref:absl.adoc[absl]::UnknownError :relfileprefix: ../ :mrdocs: Creates a status with the `kUnknown` error code and `message`. == Synopses Declared in `<absl/status/status.h>` Creates a status with the `kUnknown` error code and `message`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/Status.adoc[Status] xref:absl/UnknownError-0d3.adoc[UnknownError]( std::string_view message, xref:absl/SourceLocation.adoc[absl::SourceLocation] loc = SourceLocation::current()); ---- [.small]#xref:absl/UnknownError-0d3.adoc[_» more..._]# Creates a status with the `kUnknown` error code and `message`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename String, typename = /* implementation-defined */::EnableIfString<String>> xref:absl/Status.adoc[Status] xref:absl/UnknownError-0dd.adoc[UnknownError]( String&& message, xref:absl/SourceLocation.adoc[absl::SourceLocation] loc = SourceLocation::current()); ---- [.small]#xref:absl/UnknownError-0dd.adoc[_» more..._]# == Return Value A status with the `kUnknown` 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]#