MsgPack.Serialization.SerializerAssemblyGenerationConfiguration.CreateValidationError C# (CSharp) Method

CreateValidationError() private static method

private static CreateValidationError ( Exception innerException ) : Exception
innerException System.Exception
return System.Exception
		private static Exception CreateValidationError( Exception innerException )
		{
			return
				new InvalidOperationException(
					String.Format(
						CultureInfo.CurrentCulture, "AssemblyName property is not set correctly. Detail: {0}", innerException.Message
					),
					innerException
				);
		}
	}