Class SnowflakesUsingDifferentEpochsException
- Namespace
- SnowflakeID.Exceptions
- Assembly
- SnowflakeIDGenerator.dll
Exception thrown when trying to compare IDs using different epochs.
[Serializable]
public class SnowflakesUsingDifferentEpochsException : ArgumentException, _Exception, ISerializable
- Inheritance
-
SnowflakesUsingDifferentEpochsException
- Implements
- Inherited Members
Constructors
SnowflakesUsingDifferentEpochsException()
Initializes a new instance of the SnowflakesUsingDifferentEpochsException class.
public SnowflakesUsingDifferentEpochsException()
SnowflakesUsingDifferentEpochsException(SerializationInfo, StreamingContext)
Initializes a new instance of the SnowflakesUsingDifferentEpochsException class with serialized data.
protected SnowflakesUsingDifferentEpochsException(SerializationInfo serializationInfo, StreamingContext streamingContext)
Parameters
serializationInfo
SerializationInfoThe object that holds the serialized object data.
streamingContext
StreamingContextThe contextual information about the source or destination.
SnowflakesUsingDifferentEpochsException(string)
Initializes a new instance of the SnowflakesUsingDifferentEpochsException class with a specified error message.
public SnowflakesUsingDifferentEpochsException(string message)
Parameters
message
stringThe error message that explains the reason for the exception.
SnowflakesUsingDifferentEpochsException(string, Exception)
Initializes a new instance of the SnowflakesUsingDifferentEpochsException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public SnowflakesUsingDifferentEpochsException(string message, Exception innerException)
Parameters
message
stringThe error message that explains the reason for the exception.
innerException
ExceptionThe exception that is the cause of the current exception.
SnowflakesUsingDifferentEpochsException(string, string)
Initializes a new instance of the SnowflakesUsingDifferentEpochsException class with a specified error message and the name of the parameter that causes this exception.
public SnowflakesUsingDifferentEpochsException(string message, string paramName)
Parameters
message
stringThe error message that explains the reason for the exception.
paramName
stringThe name of the parameter that caused the current exception.
SnowflakesUsingDifferentEpochsException(string, string, Exception)
Initializes a new instance of the SnowflakesUsingDifferentEpochsException class with a specified error message, the parameter name, and a reference to the inner exception that is the cause of this exception.
public SnowflakesUsingDifferentEpochsException(string message, string paramName, Exception innerException)
Parameters
message
stringThe error message that explains the reason for the exception.
paramName
stringThe name of the parameter that caused the current exception.
innerException
ExceptionThe exception that is the cause of the current exception.
Fields
DefaultMessage
Default message for the exception.
public const string DefaultMessage = "When comparing SnowflakeIds, both should be using the same epoch for the comparison to make sense."